File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -274,6 +274,9 @@ jobs:
274
274
export PATH=${PATH}:$(go env GOPATH)/bin
275
275
make --output-sync -j -B fmt
276
276
277
+ - name : Check for unstaged files
278
+ run : ./scripts/check_unstaged.sh
279
+
277
280
test-go :
278
281
name : " test/go"
279
282
runs-on : ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'coder' && 'ubuntu-latest-16-cores' || matrix.os == 'windows-2022' && github.repository_owner == 'coder' && 'windows-latest-8-cores'|| matrix.os }}
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ terraform {
12
12
}
13
13
14
14
variable "datocms_api_token" {
15
- type = string
15
+ type = string
16
16
description = " An API token from DATOCMS for usage with building our website."
17
- default = " "
17
+ default = " "
18
18
}
19
19
20
20
# Admin parameters
@@ -124,7 +124,7 @@ resource "docker_container" "workspace" {
124
124
# CPU limits are unnecessary since Docker will load balance automatically
125
125
memory = 32768
126
126
runtime = " sysbox-runc"
127
- env = [
127
+ env = [
128
128
" CODER_AGENT_TOKEN=${ coder_agent . dev . token } " ,
129
129
" DATOCMS_API_TOKEN=${ var . datocms_api_token } " ,
130
130
]
You can’t perform that action at this time.
0 commit comments