Initial commit

This commit is contained in:
github-classroom[bot] 2025-01-28 00:13:55 +00:00 committed by GitHub
parent 392362b8ee
commit 8c7ea4970a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
74 changed files with 8220 additions and 30 deletions

View file

@ -1,30 +0,0 @@
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: Unit Tests
id: unit-tests
uses: classroom-resources/autograding-command-grader@v1
with:
test-name: Unit Tests
setup-command: ''
command: make test
timeout: 10
max-score: 80
- name: Autograding Reporter
uses: classroom-resources/autograding-grading-reporter@v1
env:
UNIT-TESTS_RESULTS: "${{steps.unit-tests.outputs.result}}"
with:
runners: unit-tests