Skip to content

Commit 91ba6ec

Browse files
committed
test.yml 추가
1 parent bfaa98a commit 91ba6ec

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/test.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Run Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
test-js:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up Python
17+
uses: actions/setup-python@v3
18+
with:
19+
python-version: '3.9'
20+
- name: Run JS grading script
21+
run: python grade_js.py
22+
23+
test-java:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: actions/checkout@v3
27+
- name: Set up Python
28+
uses: actions/setup-python@v3
29+
with:
30+
python-version: '3.9'
31+
- name: Run Java grading script
32+
run: python grade_java.py

0 commit comments

Comments
 (0)