cccae3b408
- Update golangci-lint-action from v3 to v6 - Remove redundant cache skip flags (v6 has better defaults) - Fixes compatibility with Go 1.25.1 specified in go.mod
42 lines
806 B
YAML
42 lines
806 B
YAML
name: Test CV Site
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main, develop]
|
|
push:
|
|
branches: [main, develop]
|
|
|
|
jobs:
|
|
test:
|
|
name: Test on Go ${{ matrix.go-version }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go-version: ['1.25']
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
cache: true
|
|
|
|
- name: Install dependencies
|
|
run: go mod download
|
|
|
|
- name: Run linter
|
|
uses: golangci/golangci-lint-action@v6
|
|
with:
|
|
version: latest
|
|
|
|
- name: Run tests
|
|
run: |
|
|
go test -v -race -coverprofile=coverage.txt ./...
|
|
|
|
- name: Build
|
|
run: |
|
|
go build -v .
|