Skip to content

Commit

Permalink
[chore] Run go tests on Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
scorpionknifes committed Dec 13, 2023
1 parent ff1ce4b commit 057ef9a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,20 @@ jobs:
path: ~/.tools
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('./internal/tools/**') }}
- name: Run linters
run: make multimod-verify dependabot-check license-check lint
run: |
make multimod-verify dependabot-check license-check lint
echo "Running golangci-lint against go:build windows"
GOOS=windows make golangci-lint
- name: Build
run: make build
- name: Check clean repository
run: make check-clean-work-tree

test-race:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
Expand Down

0 comments on commit 057ef9a

Please sign in to comment.