Skip to content
Snippets Groups Projects
Commit d6fc5e5f authored by Ahmet Nihat Simsek's avatar Ahmet Nihat Simsek
Browse files

Stop testing with ubuntu-20.04 and python 3.7

parent dcb13421
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ concurrency:
jobs:
coverage:
runs-on: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped
runs-on: ubuntu-22.04 # use ubuntu-latest when python 3.7 is dropped
steps:
- uses: actions/checkout@v4
......
......@@ -48,26 +48,26 @@ jobs:
needs: "use-custom-cfg"
uses: ./.github/workflows/_importable.yaml
with:
os: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped
os: ubuntu-22.04 # use ubuntu-latest when python 3.8 is dropped
python-version: ${{ matrix.python-version }}
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }}
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"]
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
unit-tests-full:
if: ${{ github.event_name == 'pull_request' }}
needs: "use-custom-cfg"
uses: ./.github/workflows/_unittest.yaml
with:
os: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped
os: ubuntu-22.04 # use ubuntu-latest when python 3.8 is dropped
python-version: ${{ matrix.python-version }}
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }}
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"]
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
unit-tests-fast:
if: ${{ github.event.pull_request == null }}
......@@ -83,13 +83,13 @@ jobs:
needs: "use-custom-cfg"
uses: ./.github/workflows/_e2e.yaml
with:
os: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped
os: ubuntu-22.04 # use ubuntu-latest when python 3.8 is dropped
python-version: ${{ matrix.python-version }}
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }}
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"]
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
e2e-tests-fast:
if: ${{ github.event.pull_request == null }}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment