Skip to content

Add acceptance tests to workflow #30

Add acceptance tests to workflow

Add acceptance tests to workflow #30

Workflow file for this run

---
name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Run unit tests
run: |
make test
- name: Run acceptance tests
run: |
make acceptance