Skip to content

Commit

Permalink
Continuous Integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael95-m committed Aug 13, 2023
1 parent e29a1d8 commit a9ea742
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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

0 comments on commit a9ea742

Please sign in to comment.