Skip to content

await: apply options #19

await: apply options

await: apply options #19

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: lib
on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
branches: [ main ]
jobs:
build:
runs-on:
labels: OSS-Runner
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
# HACK: actions doesn't support multiple modules in one repo for caching
cache: false
- name: Test
run: make test
- name: Fmtcheck
run: make fmtcheck
- name: Lint
run: make lint