From 26e8703270ac5518bbf867f9b06fc9e1889f15c7 Mon Sep 17 00:00:00 2001 From: Lorenz Lechner Date: Sun, 8 Dec 2024 14:22:55 +0100 Subject: [PATCH] gh-action build matrix --- .github/workflows/pylint.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 2dc92a2..8c50359 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -3,8 +3,12 @@ name: Pylint on: [push] jobs: - build: - runs-on: [macOs-latest, ubuntu-latest, windows-latest] + build: + strategy: + fail-fast: false + matrix: + os: [macOs-latest, ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: prefix-dev/setup-pixi@v0.8.0