Skip to content

Merge pull request #179 from uptrace/dependabot/github_actions/action… #413

Merge pull request #179 from uptrace/dependabot/github_actions/action…

Merge pull request #179 from uptrace/dependabot/github_actions/action… #413

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [1.22.x, 1.23.x]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: make test