Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: Autograding Navigation Assignment
on:
push:
pull_request:
workflow_dispatch:
permissions:
checks: write
actions: read
contents: read
jobs:
run-navigation-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
- name: Autograding Reporter
uses: classroom-resources/autograding-grading-reporter@v1
with:
runners: terminal-navigation-test