Skip to content

Send resize event to leaf node models #19

Send resize event to leaf node models

Send resize event to leaf node models #19

Workflow file for this run

name: Build, lint, and test
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
buildandtest:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.5
- name: Checkout code
uses: actions/checkout@v4
- name: Download Go modules
run: go mod download
- name: Ensure we can build
run: go build -v ./cmd/yakdash
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
- name: Test
run: make test