Skip to content

Introducing Machines and ProductOptions. #9

Introducing Machines and ProductOptions.

Introducing Machines and ProductOptions. #9

Workflow file for this run

---
name: Build Action
on:
pull_request:
branches:
- main
release:
types:
- published
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v3
with:
go-version: "1.20"
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: setup buf
uses: bufbuild/buf-setup-action@v1
with:
version: '1.15.0'
- name: make
run: |
make
make check-diff
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}