Skip to content

Commit

Permalink
Update autograding workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
github-classroom[bot] authored Jan 29, 2025
1 parent da5c077 commit 8fe12e6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/classroom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Autograding Tests
on:
- push
- workflow_dispatch
- 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 repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7

- name: Install pycparser
run: pip install pycparser tabulate psutil

- name: Run tests
run: ./check

0 comments on commit 8fe12e6

Please sign in to comment.