Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Add automated unit testing and a set of tests #2

Add automated unit testing and a set of tests

Add automated unit testing and a set of tests #2

Workflow file for this run

name: unit_tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
timeout-minutes: 30
strategy:
matrix:
env:
- pep8
- py39
- py311
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: ./tools/install_deps.sh
- name: Run tox
run: tox -e ${{ matrix.env }}