Skip to content

Revert "Assignment to be checked" #7

Revert "Assignment to be checked"

Revert "Assignment to be checked" #7

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: Numpy Test
id: numpy-test
uses: classroom-resources/autograding-python-grader@v1
with:
timeout: 10
max-score: 10
setup-command: pip install numpy
- name: pandas Test
id: pandas-test
uses: classroom-resources/autograding-python-grader@v1
with:
timeout: 10
max-score: 20
setup-command: pip install pandas
- name: Autograding Reporter
uses: classroom-resources/autograding-grading-reporter@v1
env:
NUMPY-TEST_RESULTS: "${{steps.numpy-test.outputs.result}}"
PANDAS-TEST_RESULTS: "${{steps.pandas-test.outputs.result}}"
with:
runners: numpy-test,pandas-test