From 3512a0391127ef1924eb7f4a7ad0fc44e80a2e2e Mon Sep 17 00:00:00 2001 From: Andrew Kay Date: Tue, 24 Dec 2019 19:03:58 -0600 Subject: [PATCH] Add build pycoax action --- .github/workflows/build_pycoax.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/build_pycoax.yml diff --git a/.github/workflows/build_pycoax.yml b/.github/workflows/build_pycoax.yml new file mode 100644 index 0000000..6fdd252 --- /dev/null +++ b/.github/workflows/build_pycoax.yml @@ -0,0 +1,25 @@ +name: Build pycoax + +on: + push: + paths: + - 'pycoax/**' + +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 + working-directory: ./pycoax + - name: Run unit tests + run: ./run_unit_tests.sh + working-directory: ./pycoax