Skip to content

Merge pull request #352 from crazyguitar/snyk-fix-6346fdb42374b505dc4… #627

Merge pull request #352 from crazyguitar/snyk-fix-6346fdb42374b505dc4…

Merge pull request #352 from crazyguitar/snyk-fix-6346fdb42374b505dc4… #627

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