Skip to content

Commit

Permalink
update: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-burashnikov committed Dec 11, 2023
1 parent bcf63a6 commit ec569dd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand All @@ -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: |
Expand Down

0 comments on commit ec569dd

Please sign in to comment.