Skip to content

build(deps): bump golang.org/x/sys from 0.15.0 to 0.18.0 #449

build(deps): bump golang.org/x/sys from 0.15.0 to 0.18.0

build(deps): bump golang.org/x/sys from 0.15.0 to 0.18.0 #449

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
go: ['1.19','1.20', '1.21']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
- run: go version
- uses: actions/checkout@v4
- name: go mod package cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.mod') }}
- name: Test
run: go test -v ./...