Skip to content

linted

linted #198

Workflow file for this run

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 }}