Skip to content

chore(deps): bump reproducible-containers/buildkit-cache-dance from 3.1.0 to 3.1.2 #136

chore(deps): bump reproducible-containers/buildkit-cache-dance from 3.1.0 to 3.1.2

chore(deps): bump reproducible-containers/buildkit-cache-dance from 3.1.0 to 3.1.2 #136

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go
- name: Get dependencies
run: |
go mod download
- name: Test
run: |
make test
- name: Convert coverage to lcov
uses: jandelgado/[email protected]
if: github.ref == 'refs/heads/main'
with:
infile: cover.out
outfile: cover.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
if: github.ref == 'refs/heads/main'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: cover.lcov