Skip to content

Commit

Permalink
Add CI for Python and Javascript
Browse files Browse the repository at this point in the history
  • Loading branch information
vikman90 committed Feb 22, 2024
1 parent 19623e2 commit 6d2a889
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,21 @@ jobs:
name: build-java
- name: Launch
run: ./launch.py 100 1000 5 3 java -jar queens.jar

launch-python:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Launch
run: ./launch.py 100 1000 5 3 Python/queens.py

launch-js:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Launch
run: ./launch.py 100 1000 5 3 node JS/queens.js

0 comments on commit 6d2a889

Please sign in to comment.