3dgan integration #98
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
# SPDX-FileCopyrightText: Copyright contributors to the Software Quality Assurance as a Service (SQAaaS) project. | |
# | |
# SPDX-License-Identifier: GPL-3.0-only | |
--- | |
name: SQAaaS | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
jobs: | |
sqaaas_job: | |
runs-on: ubuntu-latest | |
name: Job that triggers SQAaaS platform | |
steps: | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> "$GITHUB_OUTPUT" | |
id: extract_branch | |
- name: Print current branch name (debug) | |
shell: bash | |
run: echo running on branch ${{ steps.extract_branch.outputs.branch }} | |
- name: SQAaaS assessment step | |
uses: eosc-synergy/sqaaas-assessment-action@v1 | |
with: | |
repo: 'https://github.com/interTwin-eu/itwinai' | |
branch: ${{ steps.extract_branch.outputs.branch }} |