Skip to content

Commit

Permalink
CI/CD: Make the test workflow run on push events
Browse files Browse the repository at this point in the history
  • Loading branch information
trinamic-bp committed Dec 20, 2024
1 parent 4a9fab1 commit 1c73380
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Manual Triggered Test
name: Push Triggered Testrun

on: workflow_dispatch
on: push

jobs:
deploy:
test:

runs-on: ubuntu-latest

Expand All @@ -21,7 +21,7 @@ jobs:
run: pip install .
- name: Run the example tests
working-directory: examples
run: pytest -v --html=pytest_examples_report.html
run: pytest -v --html=pytest_examples_report.html --self-contained-html
- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 1c73380

Please sign in to comment.