Skip to content

GatorEducator/gatorgrade-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

gatorgrade-action

This GitHub Action runs GatorGrade.

Usage

Basic workflow to run GatorGrade on every push to GitHub:

name: Grader
on: [push]
jobs:
    grade:
        run-on: ubuntu-latest
        steps:
            - name: Checkout repository
                uses: actions/checkout@v2
            - name: Run Gatorgrade
                uses: GatorEducator/gatorgrade-action@v1