-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (60 loc) · 1.65 KB
/
classroom.yml
File metadata and controls
60 lines (60 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Autograding Tests
'on':
- push
- repository_dispatch
permissions:
checks: write
actions: read
contents: read
jobs:
run-autograding-tests:
runs-on: ubuntu-latest
if: github.actor != 'github-classroom[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: ex1
id: ex1
uses: classroom-resources/autograding-command-grader@v1
with:
test-name: ex1
setup-command: npm install
command: npx jest ex1
timeout: 5
max-score: 1
- name: ex2
id: ex2
uses: classroom-resources/autograding-command-grader@v1
with:
test-name: ex2
setup-command: npm install
command: npx jest ex2
timeout: 5
max-score: 1
- name: ex3
id: ex3
uses: classroom-resources/autograding-command-grader@v1
with:
test-name: ex3
setup-command: npm install
command: npx jest ex3
timeout: 5
max-score: 1
- name: ex4
id: ex4
uses: classroom-resources/autograding-command-grader@v1
with:
test-name: ex4
setup-command: npm install
command: npx jest ex4
timeout: 5
max-score: 1
- name: Autograding Reporter
uses: classroom-resources/autograding-grading-reporter@v1
env:
EX1_RESULTS: '${{steps.ex1.outputs.result}}'
EX2_RESULTS: '${{steps.ex2.outputs.result}}'
EX3_RESULTS: '${{steps.ex3.outputs.result}}'
EX4_RESULTS: '${{steps.ex4.outputs.result}}'
with:
runners: ex1,ex2,ex3,ex4