Skip to content

build(deps): bump golang.org/x/sys from 0.35.0 to 0.37.0 #428

build(deps): bump golang.org/x/sys from 0.35.0 to 0.37.0

build(deps): bump golang.org/x/sys from 0.35.0 to 0.37.0 #428

Workflow file for this run

---
name: Tests
on:
push:
tags-ignore:
- '**'
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Check out code into the Go module directory
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Build
run: go build ./...
- name: Test
run: |
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
make test
- name: Upload Code Coverage Profile
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: unit.coverprofile
flags: unittests
fail_ci_if_error: true
verbose: false