Skip to content

latest config for learning from demo #91

latest config for learning from demo

latest config for learning from demo #91

name: Python coverage
on: ["push"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: '3.10'
- name: Install dependencies
run: |
git submodule update --init --recursive
python -m pip install --upgrade pip
pip install .
- name: Install tests dependencies
run: |
pip install -r requirements-dev.txt
pip install -r requirements-examples.txt
- name: Build coverage using pytest-cov
run: |
pytest --cov=hippogym --cov-report=xml tests
- name: Codacy Coverage Reporter
uses: codacy/[email protected]
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml