web: make the protocol (quic / webtransport) a path component #639
This file contains hidden or 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
| 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 |