Skip to content

Commit

Permalink
a workflow to test our python packages
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Henkel <[email protected]>
  • Loading branch information
ct2034 committed Jun 24, 2024
1 parent 8482213 commit e1bc73e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test
# Test the python packages that are part of the toolchain

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

jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v2
# install the packages
- name: Install packages
run: |
pip install jani_generator/
pip install mc_toolchain_jani_common/
pip install scxml_converter/
# run the tests
- name: Run tests
run: pytest

0 comments on commit e1bc73e

Please sign in to comment.