Skip to content

Add files via upload #3

Add files via upload

Add files via upload #3

Workflow file for this run

name: Autograding Tests
'on':
- push
- repository_dispatch
permissions:
checks: write
actions: read
contents: read
jobs:
run-autograding-tests:
runs-on: ubuntu-latest
if: github.actor != 'github-classroom[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Parser Tests
id: parser-tests
uses: classroom-resources/autograding-command-grader@v1
with:
test-name: Parser Tests
setup-command: "./setup.sh"
command: gradle test
timeout: 10
- name: Autograding Reporter
uses: classroom-resources/autograding-grading-reporter@v1
env:
PARSER-TESTS_RESULTS: "${{steps.parser-tests.outputs.result}}"
with:
runners: parser-tests