Skip to content

Merge pull request #208 from JVickery-TBS/feature/group-org-dump-load… #41

Merge pull request #208 from JVickery-TBS/feature/group-org-dump-load…

Merge pull request #208 from JVickery-TBS/feature/group-org-dump-load… #41

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version: ["2.7", "3.8"]
runs-on: ubuntu-latest
container:
# INFO: python 2 is no longer supported in
# actions/setup-python, use python docker image instead
image: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Install requirements (py ${{ matrix.python-version }})
run: |
pip install -e ".[testing]"
- name: Run all tests (py ${{ matrix.python-version }})
run: python -m unittest discover