Files
julia-runtest/action.yml
Sascha Mann 642d7a4c3b Add branding
2020-08-07 23:37:20 +02:00

19 lines
469 B
YAML

name: 'Run Julia package tests'
description: 'Run the tests in a Julia package'
author: 'David Anthoff'
branding:
icon: 'aperture'
color: 'gray-dark'
inputs:
inline:
description: 'Value passed to the --inline flag. Options: yes | no. Default value: yes.'
default: 'yes'
runs:
using: 'composite'
steps:
- run: julia --color=yes --check-bounds=yes --inline=${{ inputs.inline }} --project -e 'using Pkg; Pkg.test(coverage=true)'
shell: bash