Skip to content

build(deps): Bump golang.org/x/text from 0.16.0 to 0.17.0 (#79) #106

build(deps): Bump golang.org/x/text from 0.16.0 to 0.17.0 (#79)

build(deps): Bump golang.org/x/text from 0.16.0 to 0.17.0 (#79) #106

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