Skip to content

build(deps): bump github.com/onsi/gomega from 1.36.0 to 1.36.1 #325

build(deps): bump github.com/onsi/gomega from 1.36.0 to 1.36.1

build(deps): bump github.com/onsi/gomega from 1.36.0 to 1.36.1 #325

Workflow file for this run

name: Checks
on:
push:
branches:
- master
- release/*
pull_request:
jobs:
fossa-scan:
name: FOSSA scan
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: fossas/fossa-action@v1
with:
api-key: ${{secrets.FOSSA_API_KEY}}
checks:
name: Basic checks
permissions:
checks: write
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: black-desk/checks@master
build-and-test:
name: Build & test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
cache: true
cache-dependency-path: ${{github.workspace}}/go.sum
- name: Upgrade
run: |
sudo apt update &&
sudo apt install systemd util-linux
- name: Build & test (debug mode)
run: |
make GO_TAGS=debug
make GO_TAGS=debug test
- name: Build & test
run: |
make
make GO_COVERAGE_PROFILE=coverage.txt test
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
pass:
name: Pass
if: always()
needs:
- checks
- build-and-test
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}