Skip to content

Bump github.com/linode/linodego from 1.44.1 to 1.45.0 #179

Bump github.com/linode/linodego from 1.44.1 to 1.45.0

Bump github.com/linode/linodego from 1.44.1 to 1.45.0 #179

Workflow file for this run

name: build and test
on:
workflow_dispatch: null
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
go-version: ["stable", "oldstable"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build binary
run: make
- name: Test
run: make test