Merge branch 'develop' #82
Workflow file for this run
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
# Copyright (c) IncQuery Labs cPlc. | |
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | |
# The following secrets need to be defined: incquery_username, incquery_password, incquery_ea_validator_license | |
name: Example for using IncQueryLabs/incquery-validator-for-ea-action | |
on: | |
push: | |
pull_request: | |
types: [opened] | |
jobs: | |
IncQueryValidatorForEA: | |
defaults: | |
run: | |
shell: pwsh | |
runs-on: windows-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout Git repository | |
uses: actions/checkout@v3 | |
- name: Run validation | |
uses: IncQueryLabs/incquery-validator-for-ea-action@v1 | |
with: | |
model_file_path: TestModels/example.qeax | |
analysis_suite: SAIC Digital Engineering Validation | |
incquery_username: "${{ secrets.incquery_username }}" | |
incquery_password: "${{ secrets.incquery_password }}" | |
license: "${{ secrets.incquery_ea_validator_license }}" | |
comment_on_pr: true | |
fail_on: none | |