From 8770d860a9f17fa36917e4e391982a661107bffd Mon Sep 17 00:00:00 2001 From: Sascha Mann Date: Tue, 4 Aug 2020 17:08:32 +0200 Subject: [PATCH] Change to composite action --- action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 0a67144..51994c3 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,9 @@ name: 'Process Julia coverage files' description: 'Convert Julia coverage files into a lcov file' author: 'David Anthoff' + runs: - using: 'node12' - main: 'dist/index.js' + using: 'composite' + steps: + - run: julia --color=yes ${{ github.action_path }}/main.jl + shell: bash