Skip to content

Merge pull request #982 from dbfixtures/dependabot/github_actions/fiz… #1424

Merge pull request #982 from dbfixtures/dependabot/github_actions/fiz…

Merge pull request #982 from dbfixtures/dependabot/github_actions/fiz… #1424

Workflow file for this run

name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions: {}
jobs:
tests_9:
uses: $/.github/workflows/single-elasticsearch.yml
with:
python-versions: '["3.11", "3.12", "3.13", "3.14", "3.15", "pypy-3.11"]'
elastic-versions: '["9.3"]'
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
tests_9_older:
needs: [tests_9]
uses: $/.github/workflows/single-elasticsearch.yml
with:
python-versions: '["3.12", "3.13", "3.14", "3.15"]'
elastic-versions: '["9.2", "9.1", "9.0"]'
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
tests_8:
needs: [tests_9_older]
uses: $/.github/workflows/single-elasticsearch-8.yml
with:
python-versions: '["3.11", "3.12", "3.13", "3.14", "3.15", "pypy-3.11"]'
elastic-versions: '["8.19"]'
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
tests_8_older:
needs: [tests_8]
uses: $/.github/workflows/single-elasticsearch-8.yml
with:
python-versions: '["3.15", "pypy-3.11"]'
elastic-versions: '["8.18", "8.17", "8.16", "8.15"]'
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
tests_oldest:
needs: [tests_8_older, tests_9_older]
uses: $/.github/workflows/single-elasticsearch-oldest.yml
with:
python-versions: '["3.11", "3.12", "3.13", "3.14", "3.15", "pypy-3.11"]'
elastic-versions: '["8.0"]'
os: "ubuntu-22.04"
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}