Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishkeshan authored Nov 29, 2023
1 parent c548ff5 commit 3413437
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,27 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Autograding Tests
id: shout-test
uses: education/autograding-io-grader@v1
with:
test-name: 'Test Name'
command: './bin/shout'
input: 'hello'
expected-output: 'HELLO'
comparison-method: 'exact'
- name: A command test
id: a-command-test
uses: education/autograding-command-grader@v1
with:
test-name: A command test
setup-command: bundle install
command: rspec
timeout: 10
max-score: 100
- name: Autograding Reporter
uses: education/autograding-grading-reporter@v1
env:
SHOUT-TEST_RESULTS: "${{steps.shout-test.outputs.result}}"
A-COMMAND-TEST_RESULTS: "${{steps.a-command-test.outputs.result}}"
with:
runners: shout-test,a-command-test

0 comments on commit 3413437

Please sign in to comment.