Fix tagged builds
This commit is contained in:
parent
86ac4b545c
commit
9b4d357672
|
@ -23,9 +23,9 @@ jobs:
|
||||||
- name: Install gio dependencies
|
- 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
|
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
|
- name: Build
|
||||||
run: go build -v ./...
|
run: go build -v .
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -v ./...
|
run: go test -v .
|
||||||
macos:
|
macos:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -36,9 +36,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
go-version: '1.20'
|
go-version: '1.20'
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -tags "nofido2 noautofill" -v ./...
|
run: go build -tags "nofido2 noautofill" -v .
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -tags "nofido2 noautofill" -v ./...
|
run: go test -tags "nofido2 noautofill" -v .
|
||||||
windows:
|
windows:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -49,6 +49,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
go-version: '1.20'
|
go-version: '1.20'
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -tags "nofido2 noautofill" -v ./...
|
run: go build -tags "nofido2 noautofill" -v .
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -tags "nofido2 noautofill" -v ./...
|
run: go test -tags "nofido2 noautofill" -v .
|
||||||
|
|
Loading…
Reference in New Issue