Skip to content

Commit

Permalink
Lint on both linux and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mircearoata committed Dec 29, 2023
1 parent d92662d commit 890ea39
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ jobs:
path: build/bin/*

lint-backend:
runs-on: windows-latest # TODO: golangci-lint only lints the files for the current OS, so we need to run it on both
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 890ea39

Please sign in to comment.