-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
70 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Test Exclusions | ||
|
||
on: | ||
pull_request: | ||
push: | ||
|
||
jobs: | ||
test-exclusions: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test Local Action (debug log) | ||
uses: ./ | ||
env: | ||
LOG_LEVEL: DEBUG | ||
CREATE_LOG_FILE: true | ||
GITHUB_WORKSPACE: test/exclusion-test | ||
with: | ||
exclude-patterns: 'template' | ||
- name: Test Local Action (debug log) | ||
uses: ./ | ||
env: | ||
LOG_LEVEL: DEBUG | ||
CREATE_LOG_FILE: true | ||
GITHUB_WORKSPACE: test/exclusion-test | ||
with: | ||
exclude-patterns: 'template' | ||
deny-warnings: 'true' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#@ except: LineWidth | ||
version 1.1 | ||
|
||
task foo { | ||
meta { | ||
description: "test task" | ||
outputs: { | ||
out: "output file" | ||
} | ||
} | ||
|
||
command <<< | ||
echo "hello" > out | ||
>>> | ||
|
||
output { | ||
File out = "out" | ||
} | ||
|
||
runtime { | ||
container: "ubuntu@sha256:67541378af7d535606e684a8234d56ca0725b6a4d8b0bbf19cebefed98e06f42" | ||
} | ||
} |
Empty file.