Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jkobject committed Aug 12, 2024
1 parent ff0f46b commit 3c8c6a6
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.10]
python-version: ["3.10"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install project
run: make install
- name: Run linter
Expand All @@ -36,14 +39,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.10]
python-version: ["3.10"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install project
run: make install
- name: Run tests
Expand All @@ -58,7 +64,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.10]
python-version: ["3.10"]
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -76,7 +82,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.10]
python-version: ["3.10"]
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 3c8c6a6

Please sign in to comment.