File tree 1 file changed +4
-9
lines changed 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 81
81
with :
82
82
go-version : ${{ matrix.go }}
83
83
84
- - name : Get Build Tools
85
- run : |
86
- GO111MODULE=on go get github.com/ory/go-acc
87
- shell : msys2 {0}
88
-
89
84
- name : Add $GOPATH/bin to $PATH
90
85
run : |
91
86
echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
@@ -94,21 +89,21 @@ jobs:
94
89
- uses : actions/checkout@v2
95
90
96
91
- name : ' Tags: default'
97
- run : go-acc . -- -race -v -tags ""
92
+ run : go build -race -v -tags ""
98
93
shell : msys2 {0}
99
94
100
95
- name : ' Tags: libsqlite3'
101
- run : go-acc . -- -race -v -tags "libsqlite3"
96
+ run : go build -race -v -tags "libsqlite3"
102
97
shell : msys2 {0}
103
98
104
99
- name : ' Tags: full'
105
100
run : |
106
101
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"
108
103
shell : msys2 {0}
109
104
110
105
- name : ' Tags: vacuum'
111
- run : go-acc . -- -race -v -tags "sqlite_vacuum_full"
106
+ run : go build -race -v -tags "sqlite_vacuum_full"
112
107
shell : msys2 {0}
113
108
114
109
- name : Upload coverage to Codecov
You can’t perform that action at this time.
0 commit comments