We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc9c4a commit 222a861Copy full SHA for 222a861
.github/workflows/conformance-to-Conformancelab.yml
@@ -0,0 +1,22 @@
1
+name: Repo integrity 2
2
+
3
+on: pull_request
4
5
+jobs:
6
+ conformance:
7
+ name: Validate changed TestScript resources against the Conformancelab profile
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v3
13
14
+ - name: Get the changed TestScripts
15
+ id: get-changed-testscripts
16
+ run: |
17
+ files=$(git diff --name-only --diff-filter=ACM --ignore-space-at-eol main -- 'output/*.xml' ':(exclude)*/_reference/*.xml')
18
+ echo "files=$files"
19
20
+ - name: Show me what you have
21
+ run: echo ${{ steps.get-changed-testscripts.outputs.files }}
22
0 commit comments