Skip to content

Commit 4761e9c

Browse files
authored
Do no test with go-acc on Windows (#980)
Currently, no way to fix failing
1 parent 48c6a56 commit 4761e9c

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/go.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,6 @@ jobs:
8181
with:
8282
go-version: ${{ matrix.go }}
8383

84-
- name: Get Build Tools
85-
run: |
86-
GO111MODULE=on go get github.com/ory/go-acc
87-
shell: msys2 {0}
88-
8984
- name: Add $GOPATH/bin to $PATH
9085
run: |
9186
echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
@@ -94,21 +89,21 @@ jobs:
9489
- uses: actions/checkout@v2
9590

9691
- name: 'Tags: default'
97-
run: go-acc . -- -race -v -tags ""
92+
run: go build -race -v -tags ""
9893
shell: msys2 {0}
9994

10095
- name: 'Tags: libsqlite3'
101-
run: go-acc . -- -race -v -tags "libsqlite3"
96+
run: go build -race -v -tags "libsqlite3"
10297
shell: msys2 {0}
10398

10499
- name: 'Tags: full'
105100
run: |
106101
echo 'skip this test'
107-
echo go-acc . -- -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth sqlite_vacuum_incr sqlite_vtable sqlite_unlock_notify"
102+
echo go build -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth sqlite_vacuum_incr sqlite_vtable sqlite_unlock_notify"
108103
shell: msys2 {0}
109104

110105
- name: 'Tags: vacuum'
111-
run: go-acc . -- -race -v -tags "sqlite_vacuum_full"
106+
run: go build -race -v -tags "sqlite_vacuum_full"
112107
shell: msys2 {0}
113108

114109
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)