mirror of
https://github.com/julia-actions/julia-processcoverage.git
synced 2026-02-11 18:46:58 +08:00
22 lines
528 B
YAML
22 lines
528 B
YAML
name: 'Process Julia coverage files'
|
|
description: 'Convert Julia coverage files into a lcov file'
|
|
author: 'David Anthoff'
|
|
|
|
branding:
|
|
icon: 'settings'
|
|
color: 'gray-dark'
|
|
|
|
inputs:
|
|
directories:
|
|
description: 'Comma-separated list of directories to look for coverage information (e.g. `src,examples`)'
|
|
required: false
|
|
default: 'src,ext'
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- run: julia --color=yes "$GITHUB_ACTION_PATH"/main.jl
|
|
shell: bash
|
|
env:
|
|
INPUT_DIRECTORIES: ${{ inputs.directories }}
|