Merge pull request #286 from UniversityRadioYork/marks/python-ci
Add MyPy to CI
This commit is contained in:
commit
209880a780
1 changed files with 43 additions and 28 deletions
19
.github/workflows/main.yml
vendored
19
.github/workflows/main.yml
vendored
|
@ -6,9 +6,9 @@ name: Checks
|
||||||
# events but only for the master branch
|
# events but only for the master branch
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [master]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches: [master]
|
||||||
|
|
||||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -47,3 +47,18 @@ jobs:
|
||||||
# Prettier
|
# Prettier
|
||||||
- name: Prettier
|
- name: Prettier
|
||||||
run: node_modules/.bin/prettier -c 'src/**/*.{js,ts,tsx,css,scss}'
|
run: node_modules/.bin/prettier -c 'src/**/*.{js,ts,tsx,css,scss}'
|
||||||
|
|
||||||
|
python:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install Poetry
|
||||||
|
run: pipx install poetry
|
||||||
|
- uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: "3.10"
|
||||||
|
cache: poetry
|
||||||
|
- run: poetry install --with=dev
|
||||||
|
- name: MyPy checks
|
||||||
|
run: poetry run mypy *.py
|
||||||
|
|
Loading…
Reference in a new issue