main.py updated #195
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Fileparser over all the JOB Files | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
run_fileparser: | |
name: Run Fileparser on JOB Files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.10.12 | |
- name: local pip install | |
run: | | |
pip install -e . | |
- name: Run Python script on test.JBI file | |
run: python testmodule/main.py testmodule/demonstrator | |
working-directory: ${{ github.workspace }} |