Skip to content

chore(deps): bump github.com/google/nftables from 0.1.1-0.20230115205135-9aa6fdf5a28c to 0.2.0 #5642

chore(deps): bump github.com/google/nftables from 0.1.1-0.20230115205135-9aa6fdf5a28c to 0.2.0

chore(deps): bump github.com/google/nftables from 0.1.1-0.20230115205135-9aa6fdf5a28c to 0.2.0 #5642

Workflow file for this run

# Runs tests and computes the code coverage
name: coverage
on:
pull_request:
push:
branches:
- "master"
- "release/**"
- "fullbuild"
jobs:
measure_coverage:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Get GOVERSION content
id: goversion
run: echo "version=$(cat GOVERSION)" >> "$GITHUB_OUTPUT"
- uses: magnetikonline/action-golang-cache@v4
with:
go-version: "${{ steps.goversion.outputs.version }}"
cache-key-suffix: "-coverage-${{ steps.goversion.outputs.version }}"
- run: ./script/linuxcoverage.bash
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: probe-cli.cov
parallel: true
finish_measuring_coverage:
needs: measure_coverage
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true