RDS-971: Test harness - fix GPT-X, add NavFT, ensure monitors are wor… #583
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: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install deps | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt -r test-requirements.txt | |
- name: Install trainer | |
run: pip install -e . | |
- name: Type check | |
run: make type | |
- name: Unit tests | |
run: make test |