Removed Policy Groups 22, 19, 18, and 12 andPolicy 15.2 from Gmail Ba… #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run OPA Tests | |
on: | |
# Run tests on each commit, newly opened/reopened PR, and | |
# PR review submission (e.g. approval) | |
workflow_dispatch: | |
push: | |
paths: | |
- "**.rego" | |
pull_request: | |
types: [opened, reopened] | |
branches: | |
- "main" | |
paths: | |
- "**.rego" | |
pull_request_review: | |
types: [submitted] | |
jobs: | |
Run-OPA-Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup OPA | |
uses: open-policy-agent/setup-opa@v2 | |
with: | |
version: latest | |
- name: Run OPA Check | |
run: opa check rego Testing/RegoTests --strict | |
- name: Run OPA Tests | |
run: opa test rego/*.rego Testing/RegoTests/**/*.rego -v | |
- name: Setup Regal | |
uses: StyraInc/[email protected] | |
with: | |
version: v0.15.0 | |
- name: Run Regal Lint | |
run: regal lint --format github rego Testing |