Skip to content

Merge pull request #8 from ViViDboarder/workflow-acceptance #31

Merge pull request #8 from ViViDboarder/workflow-acceptance

Merge pull request #8 from ViViDboarder/workflow-acceptance #31

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