Fixing documentation on Collision solver #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |