Skip to content

Add min parallelism and fix the build #411

Add min parallelism and fix the build

Add min parallelism and fix the build #411

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
tags: ["v*"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run end-to-end test suite
run: tox -e py
- name: Run linters via pre-commit
run: tox -e pre-commit