-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use shared workflow 'simple-perltester-workflow'
- Loading branch information
1 parent
161ff77
commit 37b47dd
Showing
1 changed file
with
28 additions
and
0 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: smoke-ubuntu-linux | ||
|
||
on: | ||
push: | ||
branches: | ||
- "*" | ||
tags-ignore: | ||
- "*" | ||
pull_request: | ||
|
||
# allow to trigger workflow manually | ||
workflow_dispatch: | ||
|
||
# once a month check if still runs (newer dependencies - perl, libraries, actions, ...) | ||
schedule: | ||
- cron: 0 0 1 * * | ||
|
||
jobs: | ||
simple-perltester-workflow: | ||
env: | ||
PERL_USE_UNSAFE_INC: 0 | ||
AUTHOR_TESTING: 1 | ||
AUTOMATED_TESTING: 1 | ||
RELEASE_TESTING: 1 | ||
uses: perl-actions/github-workflows/.github/workflows/simple-perltester-workflow.yml@main | ||
with: | ||
since-perl: 5.8 | ||
|