mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
63 lines
1.9 KiB
YAML
63 lines
1.9 KiB
YAML
name: CI
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go: [ '1.25', '1.24' ]
|
|
name: Go ${{ matrix.go }} test
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: Cache Go modules
|
|
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/.cache/go-build
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
- name: Setup Go
|
|
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
check-latest: true
|
|
- name: Test
|
|
run: make test
|
|
- name: Build all targets
|
|
run: make all
|
|
|
|
generate:
|
|
runs-on: ubuntu-latest
|
|
name: Check generated code
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: Cache Go modules
|
|
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/.cache/go-build
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
- name: Setup Go
|
|
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
|
|
with:
|
|
go-version: stable
|
|
check-latest: true
|
|
- name: Install stringer
|
|
run: go install golang.org/x/tools/cmd/stringer@latest
|
|
- name: Run go generate
|
|
run: go generate ./...
|
|
- name: Check for uncommitted changes
|
|
run: |
|
|
if ! git diff --exit-code; then
|
|
echo "::error::Generated code is out of date. Run 'go generate ./...' and commit the result."
|
|
exit 1
|
|
fi
|