Skip to content

Merge pull request #1 from alexandear/update-x-tools #12

Merge pull request #1 from alexandear/update-x-tools

Merge pull request #1 from alexandear/update-x-tools #12

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.23"]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: All
run: make
- name: Test
run: make test