Skip to content

Bump github.com/linode/linodego from 1.40.0 to 1.41.0 (#150) #154

Bump github.com/linode/linodego from 1.40.0 to 1.41.0 (#150)

Bump github.com/linode/linodego from 1.40.0 to 1.41.0 (#150) #154

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