Skip to content

Bump pygments from 2.14.0 to 2.15.0 in /requirements/locked #216

Bump pygments from 2.14.0 to 2.15.0 in /requirements/locked

Bump pygments from 2.14.0 to 2.15.0 in /requirements/locked #216

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
ci-checks:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-python
with:
python-version: "${{ matrix.python-version }}"
requirements-prefix: tox
- name: Run CI checks with Tox
shell: bash
run: ./bin/tox
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
env:
OS: "${{ matrix.os }}"
PYTHON: "${{ matrix.python-version }}"
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
fail_ci_if_error: true
verbose: true
- name: Upload coverage to codacy
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml