Skip to content

BUG: pass on environment variables to CI and revert skipping OSX tests #1049

BUG: pass on environment variables to CI and revert skipping OSX tests

BUG: pass on environment variables to CI and revert skipping OSX tests #1049

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
name: linux (3.13 py313-test-devdeps-alldeps-cov)
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python 3.13
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.13"
- name: Install tox
run: python -m pip install --upgrade tox
- name: Run tests against dev dependencies
run: tox -e py313-test-devdeps-alldeps-cov
- name: Upload coverage to codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
file: ./coverage.xml
verbose: true
py314:
runs-on: ubuntu-latest
name: linux (3.14 py314-test)
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python 3.14
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.14"
- name: Install tox
run: python -m pip install --upgrade tox
- name: Run tests
run: tox -e py314-test