Skip to content

chore(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 #7

chore(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0

chore(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 #7

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
- master
pull_request:
jobs:
cross:
name: Go
strategy:
matrix:
go-version: [ stable, oldstable ]
os: [ubuntu-latest, macos-latest, windows-latest]
env:
CGO_ENABLED: 1
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check and get dependencies
run: |
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
- name: Test
run: go test -v -race ./...