V2 working version #174
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: Python tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: Run tests on ${{ matrix.os }} with Python ${{ matrix.python }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python: ['3.10'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install testing and linting dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest pytest-timeout pytest-cov | |
pip install flake8 black | |
pip install -e . | |
pip install brax torch torchvision gymnax | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 ./evosax --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 ./evosax --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Run unit/integration tests | |
run: | | |
python -m pytest --all -vv --durations=0 --cov=./ --cov-report=term-missing --cov-report=xml | |
- name: "Upload coverage to Codecov" | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) |