Skip to content

Commit

Permalink
attempt to organize CI better #2
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocat93 committed Jun 14, 2024
1 parent 16d98ca commit 72fad6b
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,10 @@ jobs:
strategy:
matrix:
include:
- {os: ubuntu-latest, architecture: x64, python-version: '3.10', test: pytest}
- {os: ubuntu-latest, architecture: x64, python-version: '3.10', test: mypy}
- {os: ubuntu-latest, architecture: x64, python-version: '3.10', test: codespell}
- {os: ubuntu-latest, architecture: x64, python-version: '3.10', test: ruff}
- {os: ubuntu-latest, architecture: x64, python-version: '3.11', test: pytest}
- {os: macos-latest, architecture: arm64, python-version: '3.10', test: pytest}
- {os: macos-latest, architecture: arm64, python-version: '3.11', test: pytest}
- {os: ubuntu-latest, architecture: x64, python-version: '3.10'}
- {os: ubuntu-latest, architecture: x64, python-version: '3.11'}
- {os: macos-latest, architecture: arm64, python-version: '3.10'}
- {os: macos-latest, architecture: arm64, python-version: '3.11'}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -37,6 +34,7 @@ jobs:
run: |
python -m pip install --upgrade pipx
pipx ensurepath
echo "$HOME/.local/bin" >> $GITHUB_PATH # Explicitly add to PATH if not already included
shell: bash
- name: Install poetry
run: pipx install poetry==1.7.1
Expand Down

0 comments on commit 72fad6b

Please sign in to comment.