mirror of
https://github.com/lowobservable/coax.git
synced 2026-02-27 09:28:56 +00:00
26 lines
510 B
YAML
26 lines
510 B
YAML
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
|
|
working-directory: ./pycoax
|
|
- name: Run unit tests
|
|
run: ./run_unit_tests.sh
|
|
working-directory: ./pycoax
|