Add build action

This commit is contained in:
Andrew Kay 2019-12-10 22:18:52 -06:00
parent 7197a6ffc4
commit c46a3f7e54

20
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
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 --no-deps
- name: Run unit tests
run: ./run_unit_tests.sh