Skip to content

Commit

Permalink
Add build pycoax action
Browse files Browse the repository at this point in the history
  • Loading branch information
lowobservable committed Dec 25, 2019
1 parent 1eef4e4 commit 3512a03
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build_pycoax.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3512a03

Please sign in to comment.