Skip to content

Release v1.16.0 (#113) #137

Release v1.16.0 (#113)

Release v1.16.0 (#113) #137

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch: {} # support manual runs
# Prevent writing to the repository using the CI token.
# Ref: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions
permissions: read-all
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Generate
run: make generate && make checkgenerate
- name: Build
run: make build && make checkgenerate