-
Notifications
You must be signed in to change notification settings - Fork 66
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 b4e5b23
Showing
1 changed file
with
29 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,29 @@ | ||
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 * * | ||
|
||
env: | ||
PERL_USE_UNSAFE_INC: 0 | ||
AUTHOR_TESTING: 1 | ||
AUTOMATED_TESTING: 1 | ||
RELEASE_TESTING: 1 | ||
|
||
jobs: | ||
simple-perltester-workflow: | ||
uses: perl-actions/github-workflows/.github/workflows/simple-perltester-workflow.yml@main | ||
with: | ||
since-perl: 5.8 | ||
|