mirror of
https://github.com/lowobservable/coax.git
synced 2026-02-12 19:27:41 +00:00
Add build pycoax action
This commit is contained in:
25
.github/workflows/build_pycoax.yml
vendored
Normal file
25
.github/workflows/build_pycoax.yml
vendored
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user