mirror of
https://github.com/Exp-Intro-to-GitHub-Flow-Cohort-1/series-intro-to-github-flow-dyzulk.git
synced 2026-01-26 05:15:37 +07:00
20 lines
328 B
YAML
20 lines
328 B
YAML
name: GitHub Classroom Workflow
|
|
|
|
on:
|
|
- push
|
|
- workflow_dispatch
|
|
|
|
permissions:
|
|
checks: write
|
|
actions: read
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Autograding
|
|
runs-on: ubuntu-latest
|
|
if: github.actor != 'github-classroom[bot]'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: education/autograding@v1
|