Skip to content

Commit

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

jobs:
test:
name: Test lint and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- 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 29a0da3

Please sign in to comment.