From ec569dd4a1d61031d3e41d0f874904aa91b1e63b Mon Sep 17 00:00:00 2001 From: Artem Burashnikov Date: Tue, 12 Dec 2023 00:13:42 +0300 Subject: [PATCH] update: ci --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce00923..8003ec5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,10 @@ on: [push, pull_request] jobs: ci: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macOS-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -16,7 +19,7 @@ jobs: - name: Install poetry run: | - python -m pip install poetry==1.7.0 + python -m pip install poetry==1.7.1 - name: Configure poetry run: | @@ -43,7 +46,6 @@ jobs: - name: Ruff linter run: | python -m poetry run ruff check $(git ls-files '*.py') - python -m poetry run ruff check --select=I $(git ls-files '*.py') - name: Run tests run: |