3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2024-12-17 23:44:46 +00:00
changed-files/.github/workflows/test.yml

25 lines
418 B
YAML
Raw Normal View History

2021-03-05 02:36:52 +00:00
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Test changed-files
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run changed-files
2021-03-05 03:36:52 +00:00
id: changed-files
2021-03-05 02:36:52 +00:00
uses: ./
2021-03-05 03:36:52 +00:00
- name: Show output
run: |
2021-03-05 11:17:27 +00:00
echo "${{ toJSON(steps.changed-files.outputs) }}"
2021-03-05 03:36:52 +00:00