Swap to NPM, do major bump of most deps, bump node test targets #257
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: Python CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: ./py | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7"," 3.8", "3.9", "3.10", "3.11"] | |
poetry-version: [1.3.1] | |
os: [ubuntu-18.04, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run image | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: ${{ matrix.poetry-version }} | |
- name: Install deps | |
run: poetry install | |
- name: Test | |
run: poetry run pytest | |
- name: Lint | |
run: poetry run flake8 | |
- name: Typecheck | |
run: poetry run mypy -p mistql |