-
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (25 loc) · 759 Bytes
/
classroom.yml
File metadata and controls
31 lines (25 loc) · 759 Bytes
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
name: Autograding Terminal Navigation Tests
on:
push:
pull_request:
workflow_dispatch:
repository_dispatch:
permissions:
checks: write
actions: read
contents: read
jobs:
run-autograding-tests:
runs-on: ubuntu-latest
if: github.actor != 'github-classroom[bot]' # Prevents bot-triggered runs
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Make test script executable
run: chmod +x test_navigation.sh
- name: Run Navigation Test Script
run: bash test_navigation.sh # Executes the student’s test script
- name: Autograding Reporter
uses: classroom-resources/autograding-grading-reporter@v1
with:
runners: terminal-navigation-test