Skip to content

Commit

Permalink
Add test run to GitHub.
Browse files Browse the repository at this point in the history
  • Loading branch information
FlipperPA committed Sep 18, 2024
1 parent c4d5f07 commit d724e4d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# .github/workflows/app.yaml
name: PyTest
on: push

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.12"

- name: Install pip
run: |
python -m venv --copies --upgrade-deps venv
. venv/bin/activate
python -m pip install --upgrade pip wheel .[dev]
pytest

0 comments on commit d724e4d

Please sign in to comment.