Skip to content

Commit

Permalink
feat: add testing action
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaphoenix committed Jul 24, 2024
1 parent 6e8b63a commit 70b580a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: pytest

on:
push:
branches:
- '**'
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Step up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Running Tests
run: |
pytest tests/dfcx_scrapi/

0 comments on commit 70b580a

Please sign in to comment.