Skip to content

Allow for individual lints to opt-out of the ZLint framework executing pre-flight applicability rules #4220

Allow for individual lints to opt-out of the ZLint framework executing pre-flight applicability rules

Allow for individual lints to opt-out of the ZLint framework executing pre-flight applicability rules #4220

Workflow file for this run

name: Go
on:
push:
pull_request:
schedule:
# Run every 12 hours, at the 15 minute mark. E.g.
# 2020-11-29 00:15:00 UTC, 2020-11-29 12:15:00 UTC, 2020-11-30 00:15:00 UTC
- cron: '15 */12 * * *'
jobs:
build:
name: Build and Unit Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.18
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: make
working-directory: v3
- name: Test
run: make test
working-directory: v3