From 9b4d357672c33e9c05e25efacc83c0203b1d55af Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Thu, 24 Aug 2023 22:18:45 +0200 Subject: [PATCH] Fix tagged builds --- .github/workflows/go.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9713ef2..f85bf9a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 .