From 74f7a198900e750fb3a595e69d417b91a8a63d6b Mon Sep 17 00:00:00 2001 From: looooo Date: Fri, 27 Sep 2024 09:50:00 +0200 Subject: [PATCH] pixi: add github action --- .github/workflows/run_pixi.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/run_pixi.yaml diff --git a/.github/workflows/run_pixi.yaml b/.github/workflows/run_pixi.yaml new file mode 100644 index 000000000000..1cddd7238818 --- /dev/null +++ b/.github/workflows/run_pixi.yaml @@ -0,0 +1,23 @@ +name: run_pixi + +on: [workflow_dispatch, push, pull_request] + +jobs: + build_n_lint: + runs-on: ${{ matrix.os }} + strategy: + max-parallel: 6 + fail-fast: false + matrix: + os: [windows-latest, ubuntu-latest, macos-latest] + qt: [qt5, qt6] + + steps: + - uses: actions/checkout@v2 + name: Checkout + + - uses: prefix-dev/setup-pixi@v0.8.1 + with: + pixi-version: v0.30.0 + cache: true + - run: pixi run -e ${{ matrix.qt }} install \ No newline at end of file