Skip to content

Commit

Permalink
Add workflow for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveImmanuel committed May 29, 2024
1 parent 7bdc9fb commit 30b7a98
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Linting

on:
push:
branches:
- main
- ci-cd
tags-ignore:
- "*"

jobs:
unit-test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install dependencies
run: pip install -r requirements.txt

- name: Install dev dependencies
run: pip install pytest

- name: Run tests
run: pytest tests

0 comments on commit 30b7a98

Please sign in to comment.