Merge pull request #5 from srivarra/exposure/adjust_log #22
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
name: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: "0 5 1,15 * *" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -e {0} # -e to fail on error | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
python: "3.10" | |
- os: ubuntu-latest | |
python: "3.11" | |
- os: ubuntu-latest | |
python: "3.12" | |
- os: ubuntu-latest | |
python: "3.12" | |
pip-flags: "--pre" | |
name: PRE-RELEASE DEPENDENCIES | |
name: ${{ matrix.name }} Python ${{ matrix.python }} | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON: ${{ matrix.python }} | |
environment: | |
name: codecov | |
steps: | |
- name: Checkout ${{ github.ref }} | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python }} | |
uses: eifinger/setup-rye@v4 | |
with: | |
version: "latest" | |
enable-cache: true | |
cache-prefix: "${{ matrix.os }}-rye-${{ matrix.python }}" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Dependencies | |
run: | | |
rye sync --update-all --features=test,ci | |
- name: Test | |
env: | |
MPLBACKEND: agg | |
PLATFORM: ${{ matrix.os }} | |
DISPLAY: :42 | |
run: | | |
rye run pytest -n auto --cov --cov-report=xml -v --color=yes --junitxml=junit.xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
use_oidc: true | |
- name: Upload test results to Codecov | |
if: ${{ !cancelled() }} | |
uses: codecov/test-results-action@v1 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
flags: ${{ matrix.os }}-${{ matrix.python }} |