build(deps): bump got from 14.2.0 to 14.2.1 in /docs (#91) #124
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Check out repository | |
- uses: actions/setup-go@v5 | |
name: Set up Go | |
with: | |
go-version: 1.21.x | |
cache: false # managed by golangci-lint | |
- uses: golangci/golangci-lint-action@v6 | |
name: Install golangci-lint | |
with: | |
version: latest | |
args: --help # make lint will run the linter | |
- run: make lint | |
name: Lint | |
# Verify that all generated code is up-to-date. | |
- name: Regenerate code | |
run: make generate-cover | |
- name: Verify unchanged | |
run: | | |
if ! git diff --quiet; then | |
echo "Code changed after 'make generate'" | |
git diff | |
exit 1 | |
fi | |
- name: Upload coverage to codecov.io | |
uses: codecov/codecov-action@v4 | |
build-test: | |
name: Build and test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
go: ["1.20.x", "1.21.x"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Download Dependencies | |
run: go mod download | |
- name: Test | |
run: make cover | |
- name: Upload coverage to codecov.io | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |