Skip to content

Merge pull request #177 (deps) #1615

Merge pull request #177 (deps)

Merge pull request #177 (deps) #1615

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- '**-wip'
pull_request:
jobs:
make:
runs-on: ubuntu-latest
# Pull requests from the same repository won't trigger this checks as they were already triggered by the push
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
strategy:
matrix:
go: [ '1.22', '1.23' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: make
- name: Test
run: make test