Skip to content

Add integ workflow, build on oldstable #164

Add integ workflow, build on oldstable

Add integ workflow, build on oldstable #164

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
id-token: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ['stable', 'oldstable']
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./secretcache -coverprofile=coverage.out -covermode=atomic
- name: Codecov
uses: codecov/codecov-action@v6
with:
fail_ci_if_error: true
use_oidc: true