Skip to content

feat: add machine_type #92

feat: add machine_type

feat: add machine_type #92

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.16,1.17,1.18,1.19]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Run go lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.50.0
- name: Run tests
run: go test -v ./...