Skip to content

MAJOR: Added render() to RLToyEnv; increase compatibility with Gymnas… #260

MAJOR: Added render() to RLToyEnv; increase compatibility with Gymnas…

MAJOR: Added render() to RLToyEnv; increase compatibility with Gymnas… #260

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Various Checks and Tests
on:
push:
branches: [ master, experimental ]
pull_request:
branches: [ master, experimental ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '>=3.7 <=3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov setuptools numpy
pip install -e .
#pip install ray[rllib,debug]
#pip install tensorflow
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
# --max-complexity=10 --max-line-length=127
flake8 . --count --exit-zero --statistics
- name: Test with pytest
run: |
pytest .
- name: Cov report
run: |
pytest --cov=./ --cov-report=xml .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
directory: ./coverage/reports/
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
path_to_write_report: ./coverage/codecov_report.txt
verbose: true