diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index b482e3c..2f09233 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -63,6 +63,23 @@ jobs: run: | python -m pip install --upgrade pip setuptools wheel pip install -r requirements.txt - - name: Run test case + - name: Run Basic Heuristic run: | - python run_basic_heuristics.py \ No newline at end of file + python run_basic_heuristics.py + - name: Run FJSP DRL + run: | + python run_FJSP_DRL.py + - name: Run GA + run: | + python run_genetic_algorithm.py + - name: Run MILP + run: | + python run_milp.py + - name: Run OR-tools + run: | + python run_or_tools.py + - name: Run Dispatching rules + run: | + python run_dispatching_rules.py + + \ No newline at end of file