Skip to content

changes to make bop challenge work on jeanzay #320

changes to make bop challenge work on jeanzay

changes to make bop challenge work on jeanzay #320

Workflow file for this run

name: Tests & Coverage
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- run: poetry install --with dev -E render
- run: poetry run coverage run -m unittest
- uses: codecov/codecov-action@v3