update gh release action version #89
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
name: checks | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Run standard | |
run: npx standard | |
- name: Install Python dependencies | |
run: python -m pip install aqt mypy pyqt5-stubs PyQt6 PyQt6-WebEngine types-simplejson | |
- name: Run mypy | |
run: python -m mypy --install-types --non-interactive . |