added quality step

This commit is contained in:
Tobias Lehmann 2024-09-30 09:57:41 +02:00
parent f15c2167ce
commit 355067b091

View File

@ -0,0 +1,33 @@
#
#
# Publish docker workflow for all modules of captica.expert
#
# Project: workflows
# Author: Marc Böhm <marc.boehm@captica.de>
# License: MIT License (see LICENSE.md)
#
# Copyright (c) captica GmbH est. 2021
#
name: Quality check for captica.expert modules
on:
workflow_call:
jobs:
build_quality:
name: Build and publishquality
runs-on: docker-ubuntu
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Download build artifacts (dist files)
uses: actions/download-artifact@v3
with:
name: artifacts-build
path: build/
- name: Echo repo
run: |
echo "Repository ${{ gitea.repository }}"
echo "ref_name ${{ gitea.ref_name }}"
echo "Ref ${{ gitea.ref }}"
echo "sha ${{ gitea.sha }}"
echo "tag_name ${{ gitea.tag_name }}"
echo "revision ${{ gitea.revision }}"