Skip to content

Commit

Permalink
Add another more complex test run
Browse files Browse the repository at this point in the history
  • Loading branch information
luispabon committed Sep 11, 2023
1 parent aa2d205 commit 2565bb9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,19 @@ jobs:
- name: Build action container
run: docker build -t action_container .

- name: Run our action
- name: Run our action with basic options
run: |
docker run --rm action_container \
--ignore-branches=deletable-but-ignored \
--last-commit-age-days=9 \
--dry-run=yes \
--github-token="${{ github.token }}"
- name: Run our action with more options
run: |
docker run --rm action_container \
--allowed-prefixes=deletable-but-ignored,another-prefix \
--ignore-branches=foo,bar
--last-commit-age-days=9 \
--dry-run=yes \
--github-token="${{ github.token }}"

0 comments on commit 2565bb9

Please sign in to comment.