Fix tagged builds

This commit is contained in:
Bernd Schoolmann 2023-08-24 22:18:45 +02:00 committed by GitHub
parent 86ac4b545c
commit 9b4d357672
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -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 .