๐Ÿ“… Calendar file generator for triathlonlive.tv upcoming events triathlon-live-calendar.fly.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Adds CI for quality

+31
+31
.github/workflows/quality.yml
··· 1 + name: Tests 2 + 3 + on: [push, pull_request] 4 + 5 + jobs: 6 + build: 7 + 8 + runs-on: ubuntu-latest 9 + 10 + steps: 11 + 12 + - uses: actions/checkout@v1 13 + 14 + - name: Set up Python 3.9.4 15 + uses: actions/setup-python@v1 16 + with: 17 + python-version: 3.9.4 18 + 19 + - name: Install dependencies 20 + run: | 21 + python -m pip install poetry 22 + poetry install 23 + 24 + - name: Run flake8 25 + run: poetry run flake8 **/*.py 26 + 27 + - name: Run Black 28 + run: poetry run black . --check 29 + 30 + - name: Run mypy 31 + run: poetry run mypy .