chore: update deps #408
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kinds | |
on: | |
pull_request: | |
paths: | |
- 'kinds/**' | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: kinds/go.mod | |
cache-dependency-path: kinds/*.sum | |
- name: Fmt | |
run: make -C kinds fmt | |
- name: Vet | |
run: make -C kinds vet | |
- name: Generate | |
run: make -C kinds generate | |
- name: Check generated code to be consistent | |
run: | | |
git diff --exit-code --name-only | |
if [ $? -eq 0 ]; then | |
echo "Generated files are up to date" | |
else | |
echo "Generated files are out of date" | |
exit 1 | |
fi | |
test: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: kinds/go.mod | |
cache-dependency-path: kinds/*.sum | |
- name: Unit tests | |
run: make -C kinds unit-tests | |
validate-success-kinds: | |
runs-on: ubuntu-latest | |
needs: | |
- lint | |
- test | |
if: always() | |
steps: | |
- name: succeed if everything passed | |
run: echo "Validation succeeded" |