Skip to content

Commit

Permalink
Matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
max-muoto committed May 23, 2024
1 parent ba22cce commit c21d2a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@ on:
jobs:
build-and-test:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.12.2
python-version: ${{ matrix.python-version }}

- name: Install Poetry
uses: snok/install-poetry@v1.3.1
Expand All @@ -35,5 +39,3 @@ jobs:
- name: Run pyright
run: poetry run pyright


2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
line-length = 100
extend-select = ["I"]
lint.extend-select = ["I"]


[tool.ruff.lint.isort]
Expand Down

0 comments on commit c21d2a7

Please sign in to comment.