Skip to content

Commit

Permalink
Add run test workflow action
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorgadov committed Jun 7, 2023
1 parent cffd40c commit 9d03907
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run tests

on: [push, workflow_dispatch]

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8.6'
- name: Install pytest
run: pip install pytest
- name: Install pactus
run: pip install .
- name: Run tests
run: python -m pytest

0 comments on commit 9d03907

Please sign in to comment.