Skip to content

Commit e1f9e83

Browse files
Update autograding workflow
1 parent e6266a8 commit e1f9e83

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/classroom.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Autograding Tests
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
repository_dispatch:
7+
8+
permissions:
9+
checks: write
10+
actions: read
11+
contents: read
12+
13+
jobs:
14+
run-autograding-tests:
15+
runs-on: ubuntu-latest
16+
if: github.actor != 'github-classroom[bot]'
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v4
20+
21+
- name: Run Navigation Test Script
22+
run: bash test_navigation.sh # Runs the custom test script
23+
24+
- name: Autograding Reporter
25+
uses: classroom-resources/autograding-grading-reporter@v1
26+
with:
27+
runners: navigation-test

0 commit comments

Comments
 (0)