Add equal-sign to parse safe characters #43
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: 3.8 | |
env: | |
TOXENV: py | |
- python-version: 3.9 | |
env: | |
TOXENV: py | |
- python-version: "3.10" | |
env: | |
TOXENV: py | |
- python-version: "3.11" | |
env: | |
TOXENV: py | |
- python-version: "3.12" | |
env: | |
TOXENV: py | |
# PyPY | |
- python-version: pypy3.8 | |
env: | |
TOXENV: pypy3 | |
- python-version: pypy3.10 | |
env: | |
TOXENV: pypy3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run pre-commit linters | |
run: | | |
pip install -U pre-commit | |
pre-commit install && pre-commit run --all-files | |
- name: Run tests | |
env: ${{ matrix.env }} | |
run: | | |
pip install -U tox | |
tox | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 |