Skip to content

Merge pull request #419 from crazyguitar/snyk-fix-32962d316eafd4827d3… #733

Merge pull request #419 from crazyguitar/snyk-fix-32962d316eafd4827d3…

Merge pull request #419 from crazyguitar/snyk-fix-32962d316eafd4827d3… #733

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install
run: make deps
- name: Test
run: make clean && make test