Feat: Full Level-Based Foraging(LBF) environment #1553
Workflow file for this run
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: Tests and Linters 🧪 | |
on: [ push, pull_request ] | |
jobs: | |
tests-and-linters: | |
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}" | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9"] | |
os: [ubuntu-latest] | |
steps: | |
- name: Install dependencies for viewer test | |
run: sudo apt-get update && sudo apt-get install -y xvfb | |
- name: Checkout jumanji 🐍 | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: Install python dependencies 🔧 | |
run: pip install .[dev,train] | |
- name: Run linters 🖌️ | |
run: pre-commit run --all-files --verbose | |
- name: Run tests 🧪 | |
run: pytest -n 2 --cov=jumanji --cov-report=term-missing --junit-xml=test-results.xml -vv jumanji | |
- name: Run coverage | |
run: | | |
coverage html --directory=coverage_html_report | |
coverage report --fail-under=0.97 | |
- name: Test build docs 📖 | |
run: mkdocs build --verbose --site-dir docs_public |