Skip to content

Commit

Permalink
ci: testing src on PR
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity committed Jan 12, 2024
1 parent 4ba2063 commit 74dd9a2
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Testing

on:
pull_request:
branches:
- develop
- master

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ^3.8.5

- name: Checkout
uses: actions/checkout@v4

- name: Install poetry
run: pip3 install poetry

- name: Install dependencies
run: poetry export --dev -f requirements.txt | pip3 install -r /dev/stdin

- name: Run Unit Tests
run: make unit-tests unit-tests-coverage

- name:
run: make integration-tests

0 comments on commit 74dd9a2

Please sign in to comment.