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.
0 parents commit a996a19Copy full SHA for a996a19
.github/workflows/classroom.yml
@@ -0,0 +1,27 @@
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: Main
17
+ id: main
18
+ uses: classroom-resources/autograding-python-grader@v1
19
+ with:
20
+ timeout: 10
21
+ setup-command: ''
22
+ - name: Autograding Reporter
23
+ uses: classroom-resources/autograding-grading-reporter@v1
24
+ env:
25
+ MAIN_RESULTS: "${{steps.main.outputs.result}}"
26
27
+ runners: main
0 commit comments