aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2021-10-26 10:18:18 +0900
committerGitHub <noreply@github.com>2021-10-26 10:18:18 +0900
commit4761e9cad1547870d2221675ce8196f88c49cd06 (patch)
tree0326c7e95cea48f285e4d3e9517056484d595ce4
parentAdd go.mod and go.sum for upgrade (#978) (diff)
downloadgolite-4761e9cad1547870d2221675ce8196f88c49cd06.tar.gz
golite-4761e9cad1547870d2221675ce8196f88c49cd06.tar.xz
Do no test with go-acc on Windows (#980)
Currently, no way to fix failing
-rw-r--r--.github/workflows/go.yaml13
1 files changed, 4 insertions, 9 deletions
diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml
index 8bfab78..d1dd714 100644
--- a/.github/workflows/go.yaml
+++ b/.github/workflows/go.yaml
@@ -81,11 +81,6 @@ jobs:
with:
go-version: ${{ matrix.go }}
- - name: Get Build Tools
- run: |
- GO111MODULE=on go get github.com/ory/go-acc
- shell: msys2 {0}
-
- name: Add $GOPATH/bin to $PATH
run: |
echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
@@ -94,21 +89,21 @@ jobs:
- uses: actions/checkout@v2
- name: 'Tags: default'
- run: go-acc . -- -race -v -tags ""
+ run: go build -race -v -tags ""
shell: msys2 {0}
- name: 'Tags: libsqlite3'
- run: go-acc . -- -race -v -tags "libsqlite3"
+ run: go build -race -v -tags "libsqlite3"
shell: msys2 {0}
- name: 'Tags: full'
run: |
echo 'skip this test'
- 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"
+ 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"
shell: msys2 {0}
- name: 'Tags: vacuum'
- run: go-acc . -- -race -v -tags "sqlite_vacuum_full"
+ run: go build -race -v -tags "sqlite_vacuum_full"
shell: msys2 {0}
- name: Upload coverage to Codecov