Skip to content

Commit

Permalink
Add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
kbairak committed Jun 11, 2024
1 parent f286be5 commit 8f4d299
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---

name: Run Tests

on:
pull_request:

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Python version
uses: actions/setup-python@v3
with:
python-version: 3.9

- name: Install dependencies
run: |
pip install .
pip install six mock coverage
- name: Run Tests
run: |
coverage run -m unittest
coverage report

0 comments on commit 8f4d299

Please sign in to comment.