Skip to content

Coop updates

Coop updates #120

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
- coop_updates
pull_request:
branches:
- main
workflow_dispatch:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e $GITHUB_WORKSPACE
- name: Unit tests
run: |
python -m tests.grid_tests
python -m tests.model_tests
python -m tests.opinion_parser_tests
python -m tests.sl_tests