Skip to content

Commit

Permalink
revising testing action
Browse files Browse the repository at this point in the history
  • Loading branch information
JoFrhwld committed Feb 18, 2024
1 parent 4b128c1 commit 33ae31f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ on:

jobs:
build:
runs-on:
- ubuntu-latest
- macos-latest
- windows-latest

strategy:
matrix:
python-version: [3.10, 3.11, 3.12]
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}


steps:
- name: Checkout code
Expand All @@ -29,6 +30,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"

- name: Install Poetry
run: |
Expand Down

0 comments on commit 33ae31f

Please sign in to comment.