Skip to content

fix github actions

fix github actions #12

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- develop
jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install Python 3
uses: actions/[email protected]
with:
python-version: 3.8
- name: Install dev dependencies
run:
pip install .[dev]
- name: Unit test
run: tox -e unit_test