Skip to content

Upgrade pypi workflow (#28) #45

Upgrade pypi workflow (#28)

Upgrade pypi workflow (#28) #45

Workflow file for this run

name: Build, Lint, Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install all dependencies
run: |
python -m pip install --upgrade pip
make install
- name: Run linters
run: |
make lint
- name: Test and coverage with pytest
run: |
make test