Skip to content

build(deps): Bump golang.org/x/sys from 0.24.0 to 0.25.0 #112

build(deps): Bump golang.org/x/sys from 0.24.0 to 0.25.0

build(deps): Bump golang.org/x/sys from 0.24.0 to 0.25.0 #112

Workflow file for this run

name: "Test"
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
test:
name: Test
strategy:
matrix:
go: [ "1.20", "1.21", "1.22" ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: Checkout repository
uses: actions/checkout@v4
- name: Build
run: make build
- name: Test
run: make test