File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,12 @@ jobs:
223
223
./actionlint -color -shellcheck= -ignore "set-output"
224
224
shell : bash
225
225
226
+ - name : Check for unstaged files
227
+ run : |
228
+ rm -f ./actionlint ./typos
229
+ ./scripts/check_unstaged.sh
230
+ shell : bash
231
+
226
232
gen :
227
233
timeout-minutes : 8
228
234
runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ func TestWorkspaceActivityBump(t *testing.T) {
125
125
}
126
126
127
127
// maxTimeDrift is how long we are willing wait for a deadline to
128
- // be increased. Since it could have been bumped at the intial
128
+ // be increased. Since it could have been bumped at the initial
129
129
maxTimeDrift := testutil .WaitMedium
130
130
131
131
updatedAfter := dbtime .Now ()
Original file line number Diff line number Diff line change @@ -3,10 +3,11 @@ package wsproxy
3
3
import (
4
4
"context"
5
5
6
+ "golang.org/x/xerrors"
7
+
6
8
"github.com/coder/coder/v2/coderd/cryptokeys"
7
9
"github.com/coder/coder/v2/codersdk"
8
10
"github.com/coder/coder/v2/enterprise/wsproxy/wsproxysdk"
9
- "golang.org/x/xerrors"
10
11
)
11
12
12
13
var _ cryptokeys.Fetcher = & ProxyFetcher {}
You can’t perform that action at this time.
0 commit comments