Skip to content

test padding list of files #13

test padding list of files

test padding list of files #13

Workflow file for this run

name: test
on:
push:
branches:
- test-split
env:
DOCKER_IMAGE: chuhlomin/render-template
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Test action
uses: ./ # Uses an action in the root directory
id: render
with:
template: ./testdata/list_of_files.md
vars: |
added_files: a.txt b.txt c.txt
added_files_2: >
a.txt
b.txt
c.txt
added_files_3:
- a.txt
- b.txt
- c.txt
- name: Get `result` output
run: echo "${{ steps.render.outputs.result }}"