Skip to content

Bump pygments from 2.19.2 to 2.20.0 #2378

Bump pygments from 2.19.2 to 2.20.0

Bump pygments from 2.19.2 to 2.20.0 #2378

Workflow file for this run

name: tests
on: [push, pull_request]
permissions:
id-token: write
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v5.6.0
with:
python-version: 3.10.16
- name: Set up Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --with test
- name: Generate report
run: |
poetry run pytest --cov=./ --cov-report=xml -W ignore::DeprecationWarning
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v6
with:
fail_ci_if_error: true
use_oidc: true
files: /home/runner/work/mdopt/mdopt/coverage.xml
verbose: true