Skip to content

Sir-NoChill

Sir-NoChill #100

Workflow file for this run

name: '415 Tester CI'
run-name: ${{ github.actor }}
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas
- name: build tester
run: tests/build.sh
- name: run tests
run: tests/run_tests.sh