Fix tagged builds
This commit is contained in:
parent
86ac4b545c
commit
9b4d357672
|
@ -23,9 +23,9 @@ jobs:
|
|||
- name: Install gio dependencies
|
||||
run: sudo apt-get install -y gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
|
||||
- name: Build
|
||||
run: go build -v ./...
|
||||
run: go build -v .
|
||||
- name: Test
|
||||
run: go test -v ./...
|
||||
run: go test -v .
|
||||
macos:
|
||||
runs-on: macOS-latest
|
||||
steps:
|
||||
|
@ -36,9 +36,9 @@ jobs:
|
|||
with:
|
||||
go-version: '1.20'
|
||||
- name: Build
|
||||
run: go build -tags "nofido2 noautofill" -v ./...
|
||||
run: go build -tags "nofido2 noautofill" -v .
|
||||
- name: Test
|
||||
run: go test -tags "nofido2 noautofill" -v ./...
|
||||
run: go test -tags "nofido2 noautofill" -v .
|
||||
windows:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
|
@ -49,6 +49,6 @@ jobs:
|
|||
with:
|
||||
go-version: '1.20'
|
||||
- name: Build
|
||||
run: go build -tags "nofido2 noautofill" -v ./...
|
||||
run: go build -tags "nofido2 noautofill" -v .
|
||||
- name: Test
|
||||
run: go test -tags "nofido2 noautofill" -v ./...
|
||||
run: go test -tags "nofido2 noautofill" -v .
|
||||
|
|
Loading…
Reference in New Issue