Merge pull request #4 from opengovern/cleanup-table-name #10
This file contains hidden or 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: Compare Controls | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| compare: | |
| runs-on: ubuntu-latest | |
| env: | |
| BENCHMARKS_PATH: "../../compliance/frameworks" | |
| CONTROLS_PATH: "../../compliance/controls" | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.22.5' | |
| - name: Run comparison script | |
| run: | | |
| cd .github/scripts | |
| go mod download | |
| go run . |