Skip to content

Bump actions/checkout from 4 to 5 #1004

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #1004

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.24.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install Node
uses: actions/setup-node@v4
- name: Install Dependencies
run: make deps
- name: Lint
run: make lint
- name: Build
run: make clean release
- name: Test
run: go test ./...