Skip to content

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Otterverse committed Nov 20, 2024
1 parent 8daa105 commit 9b554b1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
pull_request:
workflow_dispatch:
workflow_call:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
check-latest: true
- name: Go Version
run: go version
- name: Lint
run: |
make lint
GEN_DIFF=$(git status -s)
if [ -n "$GEN_DIFF" ]; then
echo '"make lint" resulted in the following untracked changes:' 1>&2
git diff
echo '"make lint" resulted in changes not in git' 1>&2
git status
exit 1
fi
- name: Build
run: make all

0 comments on commit 9b554b1

Please sign in to comment.