Skip to content

Fixing documentation on Collision solver #39

Fixing documentation on Collision solver

Fixing documentation on Collision solver #39

Workflow file for this run

name: Mazelib code coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Update package index
run: sudo apt-get update
- name: Install PIP Packages
run: |
pip install -r requirements.txt
pip install pytest
pip install codecov
- name: Run Coverage Tests
run: |
coverage run -m unittest discover
codecov
env:
PYTHONHASHSEED: 0