Skip to content

Commit

Permalink
Lint, test & containerise policy in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
garryod committed Mar 19, 2024
1 parent 7defe39 commit 9e7da03
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions .github/workflows/policy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: Policy

on:
push:
pull_request:

jobs:
lint:
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]

- name: Setup Regal
uses: StyraInc/[email protected]
with:
version: latest

- name: Lint
run: regal lint --format github ./policy

test:
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]

- name: Setup OPA
uses: open-policy-agent/[email protected]
with:
version: latest

- name: Test
run: opa test ./policy -v

build_bundle:
needs:
- lint
- test
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout source
uses: actions/[email protected]

- name: Generate Image Name
run: echo IMAGE_REPOSITORY=ghcr.io/$(echo "${{ github.repository }}-policy" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV

- name: Log in to GitHub Docker Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Setup OPA
uses: open-policy-agent/[email protected]
with:
version: latest

- name: Build OPA Policy # If this is a tag, use it as a revision string
run: opa build -b org-policy -r ${{ github.ref_name }} --ignore *_test.rego

- name: Publish OPA Bundle
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }}
run: oras push ${{ env.IMAGE_REPOSITORY }}:${{ github.ref_name }} bundle.tar.gz:application/vnd.oci.image.layer.v1.tar+gzip

0 comments on commit 9e7da03

Please sign in to comment.