relational/.github/workflows/test.yml

19 lines
338 B
YAML
Raw Normal View History

2020-11-23 15:50:14 -06:00
name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: pip install -r test-requirements.txt
- name: Run tests
run: make test