Skip to content

Commit

Permalink
Add test github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
discordianfish authored and alexpalms committed Nov 14, 2022
1 parent c862a7b commit 0e2b9c7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
File renamed without changes.
15 changes: 15 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
pull_request: {}

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: python3 -m pip install .
- run: python3 -m pip install --upgrade pytest pytest-mock
- run: pytest tests/test_random.py
- run: pytest tests/test_speed.py

0 comments on commit 0e2b9c7

Please sign in to comment.