Skip to content

Move to pyproject.toml #249

Move to pyproject.toml

Move to pyproject.toml #249

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ '**' ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
make devenv
- name: Check styles
run: |
make check
- name: Test with pytest
run: |
make test