Skip to content

Runner package and generator object skeletons #28

Runner package and generator object skeletons

Runner package and generator object skeletons #28

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: Build Pull Request
on: [ pull_request ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ "^1.20" ]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Setup
run: make setup
#- name: Lint
# run: make lint
- name: Lint
run: make check-headers
- name: Build
run: make build