From 890ea3939386667d0f32e0d01062bba8b1af564f Mon Sep 17 00:00:00 2001 From: Mircea Roata Date: Fri, 29 Dec 2023 16:15:53 +0200 Subject: [PATCH] Lint on both linux and windows --- .github/workflows/push.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ef0350c4..c7682dde 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -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