We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6266a8 commit e1f9e83Copy full SHA for e1f9e83
.github/workflows/classroom.yml
@@ -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