fix: ci #10
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: CI | |
permissions: read-all | |
on: | |
push: | |
paths: | |
- cmd/** | |
- pkg/** | |
- internal/** | |
- .github/workflows/ci.yml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Get Go Cache Paths | |
id: go-cache-paths | |
run: | | |
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT | |
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT | |
- name: Install gofumpt | |
run: go install mvdan.cc/gofumpt@latest | |
- name: Go Build Cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.go-cache-paths.outputs.go-build }} | |
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
- name: Go Mod Cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.go-cache-paths.outputs.go-mod }} | |
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} | |
- name: Check Code Formatting | |
run: | | |
unformatted_files=$(gofumpt -l .) | |
if [ -n "$unformatted_files" ]; then | |
echo "Files not formatted:" | |
echo "$unformatted_files" | |
exit 1 | |
fi | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: read | |
checks: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Get Go Cache Paths | |
id: go-cache-paths | |
run: | | |
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT | |
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT | |
- name: Go Build Cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.go-cache-paths.outputs.go-build }} | |
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
- name: Go Mod Cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.go-cache-paths.outputs.go-mod }} | |
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v5 | |
with: | |
version: latest | |
working-directory: ./ | |
args: --timeout=5m | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Cache Make Installation | |
uses: actions/cache@v4 | |
with: | |
path: /usr/bin/make | |
key: ${{ runner.os }}-make-install | |
- name: Install Make if not cached | |
run: sudo apt-get update && sudo apt-get install -y make | |
if: steps.cache-make.outputs.cache-hit != 'true' | |
- name: Cache CFSSL Installation | |
uses: actions/cache@v4 | |
with: | |
path: /usr/local/bin/cfssl | |
key: ${{ runner.os }}-cfssl-install | |
- name: Cache CFSSLJSON Installation | |
uses: actions/cache@v4 | |
with: | |
path: /usr/local/bin/cfssljson | |
key: ${{ runner.os }}-cfssljson-install | |
- name: Install CFSSL and CFSSLJSON if not cached | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y wget | |
wget -q --https-only --secure-protocol=TLSv1_2 https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 | |
wget -q --https-only --secure-protocol=TLSv1_2 https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 | |
sudo mv cfssl_linux-amd64 /usr/local/bin/cfssl | |
sudo mv cfssljson_linux-amd64 /usr/local/bin/cfssljson | |
sudo chmod +x /usr/local/bin/cfssl /usr/local/bin/cfssljson | |
if: steps.cache-cfssl.outputs.cache-hit != 'true' || steps.cache-cfssljson.outputs.cache-hit != 'true' | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Get Go Cache Paths | |
id: go-cache-paths | |
run: | | |
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT | |
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT | |
- name: Go Build Cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.go-cache-paths.outputs.go-build }} | |
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
- name: Go Mod Cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.go-cache-paths.outputs.go-mod }} | |
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} | |
- name: Test | |
run: make init gencert test |