-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 999 Bytes
/
classroom.yml
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
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: q1
id: q1
uses: classroom-resources/autograding-command-grader@v1
with:
test-name: q1
setup-command: npm install
command: npm test q1
timeout: 10
max-score: 4
- name: q2
id: q2
uses: classroom-resources/autograding-command-grader@v1
with:
test-name: q2
setup-command: npm install
command: npm test q2
timeout: 10
max-score: 6
- name: Autograding Reporter
uses: classroom-resources/autograding-grading-reporter@v1
env:
Q1_RESULTS: "${{steps.q1.outputs.result}}"
Q2_RESULTS: "${{steps.q2.outputs.result}}"
with:
runners: q1,q2