update links to repository after moving it to quic-interop org #76
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
on: [push, pull_request] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- 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 implementations.json is valid | |
if: success() || failure() # run this step even if the previous one failed | |
run: python implementations.py |