Skip to content

feat(sim): add map and terrain inputs #81

feat(sim): add map and terrain inputs

feat(sim): add map and terrain inputs #81

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- "**"
jobs:
unittest:
runs-on: ubuntu-latest
env:
MPLBACKEND: Agg
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run unit tests
run: python -m unittest discover -s tests -v