Skip to content

Merge branch 'master' into heaps #88

Merge branch 'master' into heaps

Merge branch 'master' into heaps #88

Workflow file for this run

name: GitHub Actions
on: [ push, pull_request ]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.10", "3.9" ]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
run: python -m pip install -r requirements.txt
- name: Test
run: nose2 tests