Skip to content

update npm test system #261

update npm test system

update npm test system #261

Workflow file for this run

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