Initial commit #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |