Skip to content

Only prefix absolute URLs with / (#34) #33

Only prefix absolute URLs with / (#34)

Only prefix absolute URLs with / (#34) #33

Workflow file for this run

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
# PyPY
- python-version: pypy3.8
env:
TOXENV: pypy3
- python-version: pypy3.10
env:
TOXENV: pypy3
steps:
- uses: actions/checkout@v3
- 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