From 739d78a829a21c443a5860059680b1fca8713983 Mon Sep 17 00:00:00 2001 From: Peter Saveliev Date: Thu, 9 Jan 2025 18:38:08 +0100 Subject: [PATCH] ci: enable nox core session --- .github/workflows/pull_request.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index ad5518f68..df12e72dc 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -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 }}