Skip to content

Commit

Permalink
Update to latest workflows (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Jan 10, 2023
1 parent 9501ddf commit 084ee8d
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 14 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/linux.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions Ubuntu config for Perl 5 modules
# version 20220825.001
# version 20220902.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand All @@ -9,20 +9,24 @@ on:
push:
branches:
- '**'
- '!**windows**'
- '!**appveyor**'
- '!**circleci**'
- '!**macos**'
- '!**notest**'
- '!**release**'
- '!**windows**'
tags-ignore:
# I tag release pushes but those should have already been tested
- 'release-*'
paths-ignore:
# list all the files which are irrelevant to the tests
# non-code, support files, docs, etc
- '.appveyor.yml'
- '.circleci'
- '.gitattributes'
- '.github/workflows/macos.yml'
- '.github/workflows/windows.yml'
- '.github/workflows/release.yml'
- '.github/workflows/windows.yml'
- '.gitignore'
- '.releaserc'
- 'Changes'
Expand Down Expand Up @@ -53,7 +57,7 @@ jobs:
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Platform check
run: uname -a
- name: Perl version check
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/macos.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions macOS config for Perl 5 modules
# version 20220825.001
# version 20220902.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand All @@ -9,19 +9,24 @@ on:
push:
branches:
- '**'
- '!**windows**'
- '!**appveyor**'
- '!**circleci**'
- '!**linux**'
- '!**notest**'
- '!**release**'
- '!**windows**'
tags-ignore:
# I tag release pushes but those should have already been tested
- 'release-*'
paths-ignore:
# list all the files which are irrelevant to the tests
# non-code, support files, docs, etc
- '.appveyor.yml'
- '.circleci'
- '.gitattributes'
- '.github/workflows/windows.yml'
- '.github/workflows/linux.yml'
- '.github/workflows/release.yml'
- '.github/workflows/windows.yml'
- '.gitignore'
- '.releaserc'
- 'Changes'
Expand All @@ -33,7 +38,7 @@ jobs:
perl:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Platform check
run: uname -a
- name: Set up Perl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions release config for Perl 5 modules
# version 20220825.001
# version 20220827.002
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand All @@ -21,7 +21,7 @@ jobs:
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Some older versions of Perl have trouble with hostnames in certs. I
# haven't figured out why.
- name: Setup environment
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/windows.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions Windows config for Perl 5 modules
# version 20220825.001
# version 20220902.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand All @@ -9,8 +9,11 @@ on:
push:
branches:
- '**'
- '!**appveyor**'
- '!**circleci**'
- '!**linux**'
- '!**macos**'
- '!**notest**'
- '!**release**'
tags-ignore:
# I tag release pushes but those should have already been tested
Expand All @@ -19,10 +22,11 @@ on:
# list all the files which are irrelevant to the tests
# non-code, support files, docs, etc
- '.appveyor.yml'
- '.circleci'
- '.gitattributes'
- '.github/workflows/release.yml'
- '.github/workflows/macos.yml'
- '.github/workflows/linux.yml'
- '.github/workflows/macos.yml'
- '.github/workflows/release.yml'
- '.gitignore'
- '.releaserc'
- 'Changes'
Expand All @@ -40,7 +44,7 @@ jobs:
- windows-2019
- windows-2022
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Perl
run: |
choco install strawberryperl
Expand Down

0 comments on commit 084ee8d

Please sign in to comment.