diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/go.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..d5cf7fd --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,15 @@ +name: Go ✅ + +on: [push, pull_request, workflow_dispatch ] + +jobs: + check: + runs-on: ubuntu-20.04 + steps: + - name: Checkout 🛒 + uses: actions/checkout@v2 + + - name: Check ✅ + uses: cedrickring/[email protected] + continue-on-error: false + |