Skip to content

all report -> unit test #22

all report -> unit test

all report -> unit test #22

Workflow file for this run

name: 'Full Dagger Pipeline'
on:
push:
branches:
- dagger-ci
jobs:
pipeline:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- name: 'pipeline'
uses: dagger/[email protected]
with:
# Dagger Version
version: 0.14.0
# Dagger CLI Flags
#dagger-flags: # optional, default is --progress plain
# CLI verb (call, run, download, up, functions, shell, query)
verb: call
# The working directory in which to run the Dagger CLI
workdir: .
# Dagger Cloud Token
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
# Dagger module to call. Local or Git
module: .
# Arguments to pass to CLI
args: ci-integration --pass=true --dir=./ export --path=./reports/
- name: Unittest Report
uses: dorny/[email protected]
with:
name: Minitests
path: reports/unit-tests/*.xml
reporter: java-junit
fail-on-empty: 'false'
fail-on-error: 'true'