From c46a3f7e548efb5012805fa5321760aeb5b84cd3 Mon Sep 17 00:00:00 2001 From: Andrew Kay Date: Tue, 10 Dec 2019 22:18:52 -0600 Subject: [PATCH] Add build action --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..2f7bb2a --- /dev/null +++ b/.github/workflows/build.yml @@ -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