Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
feat: add initial lula lint action (#73)
Browse files Browse the repository at this point in the history
* feat: add initial lula lint action

* fix: added blank line for yaml syntax
  • Loading branch information
CloudBeard authored Jan 16, 2024
1 parent 187932d commit da74d1a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/lula-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: lula-lint

permissions:
contents: read

defaults:
run:
# We need -e -o pipefail for consistency with GitHub Actions' default behavior
shell: bash -e -o pipefail {0}

on:
pull_request:
branches:
- main
paths:
- "oscal-component.yaml"

jobs:
lint:
runs-on: ubuntu-latest
steps:
# Checkout the repo and setup the tooling for this job
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: ${{ github.head_ref }}

- name: Lula Setup
uses: defenseunicorns/lula-action/setup@095636b7880051e11b05f10a582fdd911526161c # Commit Tag

- name: Lula Lint
uses: defenseunicorns/lula-action/lint@095636b7880051e11b05f10a582fdd911526161c # Commit Tag
with:
oscal-target: "oscal-component.yaml"

0 comments on commit da74d1a

Please sign in to comment.