Skip to content

Merge pull request #383 from zapta/develop #588

Merge pull request #383 from zapta/develop

Merge pull request #383 from zapta/develop #588

Workflow file for this run

# ...
name: Build/Test
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.9]
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make deps
- name: Run tox
run: |
make tox