fix(deps): update all non-major dependencies #288
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 | |
on: | |
push: | |
branches: [ main, release ] | |
pull_request: | |
branches: [ '*' ] | |
env: | |
GO_VERSION: 1.22.x | |
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: ${{ env.GO_VERSION }} | |
cache: false | |
- uses: golangci/golangci-lint-action@v6 | |
name: Install golangci-lint | |
with: | |
version: latest | |
args: --help | |
- run: make lint | |
name: Lint | |
test: | |
runs-on: ${{ matrix.os }} | |
name: Test (${{ matrix.os}}) | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "windows-latest"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Test | |
run: make cover | |
shell: bash | |
- name: Upload coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./cover.out | |
test-integration: | |
runs-on: ubuntu-latest | |
name: Integration test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
# Node is needed to download pagefind. | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
cache-dependency-path: integration/package-lock.json | |
- name: Test | |
run: make cover-integration | |
shell: bash | |
- name: Upload coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./cover.integration.out |