JustinMeimar #124
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: '415 Tester CI' | |
run-name: ${{ github.actor }} | |
on: [push] | |
jobs: | |
build-and-test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install -e . | |
- name: run config tests | |
run: pytest tests/test_config.py | |
- name: run runner tests | |
run: pytest tests/test_runner.py | |
- name: run grade tests | |
run: pytest tests/test_grader.py | |
- name: run runtime tests | |
run: pytest tests/test_runtime.py |