From c6cd1829aeae840dae50ea22c6832090b91187de Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sat, 29 Oct 2022 23:31:52 +0200 Subject: [PATCH] test windows --- .github/workflows/tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dc52bff..f62e32e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,8 +7,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - # os: [ubuntu-latest, macos-latest, windows-latest] - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-latest, windows-latest] + # os: [ubuntu-latest, macos-latest] python-version: ["3.9"] poetry-version: ["1.2.1"] steps: @@ -21,9 +21,15 @@ jobs: uses: abatilo/actions-poetry@v2 with: poetry-version: ${{ matrix.poetry-version }} + - name: Set up Chocolately ${{ matrix.os }} + uses: crazy-max/ghaction-chocolatey@v2 - name: Install dependencies run: | + if [ '$RUNNER_OS' == 'windows-latest' ]; then + choco install pkgconfiglite + fi poetry install --with dev + shell: bash - name: Run mint env: LIGHTNING: False