Skip to content

fix(cicd): proper Makefile content (8) #139

fix(cicd): proper Makefile content (8)

fix(cicd): proper Makefile content (8) #139

Workflow file for this run

name: Check codebase
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ["3.8", "3.10"]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --no-interaction
- name: Run linter
run: make lint
- name: Run tests
run: make test