Skip to content

Continuous Integration #1

Continuous Integration

Continuous Integration #1

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: pip install pipenv & pipenv install --dev
- name: Run unit tests
run: pipenv run pytest test/
- name: Lint
run: pipenv run pylint --recursive=y .
- name: Integration Test
run: bash integration_test/run.sh