Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add validator workflow #664

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
6 changes: 6 additions & 0 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,9 @@ jobs:
permissions:
pull-requests: write
contents: read

validation-checker:
uses: ./.github/workflows/validation-check.yml
permissions:
pull-requests: write
contents: read
17 changes: 17 additions & 0 deletions .github/workflows/validation-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Validation

on:
workflow_call:

jobs:
validate-services:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: FINOS CCC Validator
uses: sshiells-scottlogic/[email protected]
with:
targetDir: "./services"