Skip to content

Commit

Permalink
Merge pull request #1 from GatorEducator/integ/gatorgrade-action
Browse files Browse the repository at this point in the history
Create GitHub Action for Gatorgrade
  • Loading branch information
burgess01 authored May 5, 2022
2 parents adcef1b + 0c936d1 commit 68dd62e
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
# gatorgrade-action
# 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
```
15 changes: 15 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Gatorgrade'
description: 'Execute Gatorgrade'
author: 'Katherine Burgess'
runs:
using: "composite"
steps:
- run: |
echo "::group::Install GatorGrade"
pip install gatorgrade
echo "::endgroup::"
gatorgrade
shell: bash
branding:
icon: 'user-check'
color: 'green'

0 comments on commit 68dd62e

Please sign in to comment.