Skip to content

Update github action modules #76

Update github action modules

Update github action modules #76

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'release-*'
tags-ignore:
- '*.*'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: '1.23'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run checks
run: |
make ci