Skip to content

build(deps-dev): bump setuptools from 69.0.3 to 70.0.0 #154

build(deps-dev): bump setuptools from 69.0.3 to 70.0.0

build(deps-dev): bump setuptools from 69.0.3 to 70.0.0 #154

Workflow file for this run

name: Check codebase
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.10", "3.11"]
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