Skip to content

Align CI workflows with the repository Go 1.25 requirement. #1530

Align CI workflows with the repository Go 1.25 requirement.

Align CI workflows with the repository Go 1.25 requirement. #1530

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: tests
run: scripts/cibuild
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
flags: micro