Skip to content

revert to sfdmap

revert to sfdmap #238

Workflow file for this run

name: unit tests
on: [push, pull_request]
jobs:
build:
runs-on: [ubuntu-20.04]
strategy:
matrix:
python-version: ['3.8']
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run tox
run: |
tox -e py${{ matrix.python-version }}-test