Skip to content

fix(deps): update module darvaza.org/core to v0.15.6 #63

fix(deps): update module darvaza.org/core to v0.15.6

fix(deps): update module darvaza.org/core to v0.15.6 #63

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.21', '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