Skip to content

web: make the protocol (quic / webtransport) a path component #639

web: make the protocol (quic / webtransport) a path component

web: make the protocol (quic / webtransport) a path component #639

Workflow file for this run

on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: 3.12
- name: install tools
run: pip install flake8 black
- name: enforce coding styles using flake8
run: flake8 .
- name: run Black linter
if: success() || failure() # run this step even if the previous one failed
run: black --check --diff .
- name: check that QUIC implementations are valid
if: success() || failure() # run this step even if the previous one failed
run: python implementations.py -p quic
- name: check that WebTransport implementations are valid
if: success() || failure() # run this step even if the previous one failed
run: python implementations.py -p webtransport
- uses: ludeeus/action-shellcheck@master