Skip to content

Commit

Permalink
ci: enable nox core session
Browse files Browse the repository at this point in the history
  • Loading branch information
svinota committed Jan 9, 2025
1 parent e9ee628 commit 739d78a
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,26 @@ jobs:
runs-on: Ubuntu
strategy:
matrix:
python: [python3.10, python3.11]
python: [python3.10, python3.11, python3.12]
steps:
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- run: sudo make nox session=linux-${{ matrix.python }}
fedora-core:
runs-on: Fedora
strategy:
matrix:
python: [python3.10, python3.11, python3.12]
steps:
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- run: sudo make nox session=core-${{ matrix.python }}
ubuntu-core:
runs-on: Ubuntu
strategy:
matrix:
python: [python3.10, python3.11, python3.12]
steps:
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- run: sudo make nox session=core-${{ matrix.python }}

0 comments on commit 739d78a

Please sign in to comment.