Skip to content

Bump github.com/linode/linodego from 1.42.0 to 1.43.0 #165

Bump github.com/linode/linodego from 1.42.0 to 1.43.0

Bump github.com/linode/linodego from 1.42.0 to 1.43.0 #165

Workflow file for this run

name: build and test
on:
workflow_dispatch: null
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "stable"
- run: go version
- name: Build binary
run: make
- name: Test
run: make test
old-go-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "oldstable"
- run: go version
- name: Build binary
run: make
- name: Test
run: make test