We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b880c38 commit 706c8c1Copy full SHA for 706c8c1
.github/workflows/classroom.yml
@@ -0,0 +1,28 @@
1
+name: Autograding Tests
2
+'on':
3
+- push
4
+- repository_dispatch
5
+permissions:
6
+ checks: write
7
+ actions: read
8
+ contents: read
9
+jobs:
10
+ run-autograding-tests:
11
+ runs-on: ubuntu-latest
12
+ if: github.actor != 'github-classroom[bot]'
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
+ - name: test3-test
17
+ id: test3-test
18
+ uses: classroom-resources/autograding-python-grader@v1
19
+ with:
20
+ timeout: 10
21
+ max_score: 10
22
+ setup-command: ''
23
+ - name: Autograding Reporter
24
+ uses: classroom-resources/autograding-grading-reporter@v1
25
+ env:
26
+ TEST3-TEST_RESULTS: "${{steps.test3-test.outputs.result}}"
27
28
+ runners: test3-test
0 commit comments