CI-devtest #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This test job is separated out into its own workflow to be able to trigger separately | |
name: CI-devtest | |
on: | |
push: | |
branches: | |
- main | |
- 'v*' | |
tags: | |
- '*' | |
pull_request: | |
schedule: | |
- cron: "0 3 * * 6" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
devdeps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install tox | |
run: python -m pip install --upgrade tox | |
- name: Run tests against dev dependencies | |
run: tox -e py312-test-devdeps-alldeps-cov | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml | |
verbose: true |