Skip to content

Commit

Permalink
starting tests on commit flow
Browse files Browse the repository at this point in the history
  • Loading branch information
hyskoniho committed Jul 19, 2024
1 parent 4ed7557 commit 83a2476
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: PTymer Tests

on: [push]
on: [push, pull_request]

jobs:
build:
Expand All @@ -17,5 +17,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Unit Test
run: python -c "import sys; print(sys.version)"

0 comments on commit 83a2476

Please sign in to comment.