Skip to content

Add global discovery #543

Add global discovery

Add global discovery #543

Workflow file for this run

# 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@v4
with:
file: ./coverage.xml
verbose: true
py313:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13-dev"
- name: Install tox
run: python -m pip install --upgrade tox
- name: Run tests against dev dependencies
run: tox -e py313-test