Skip to content

Commit

Permalink
Updated GAs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ge94 committed Apr 29, 2024
1 parent ad89694 commit 1544e70
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pytest_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run pytest

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
pytest:
name: Run pytest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: pip install .[tests]
- uses: pavelzw/pytest-action@v2
with:
emoji: false
verbose: true
job-summary: true

0 comments on commit 1544e70

Please sign in to comment.