Skip to content

Commit

Permalink
Update the GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
voegelas committed Jul 26, 2023
1 parent fd82fcd commit 6dd4f52
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/linux.yml
@@ -1,17 +1,22 @@
---
name: linux

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
perl:

runs-on: ubuntu-latest

container:
image: voegelas/debian-devel

steps:
- uses: actions/checkout@v3
with:
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/windows.yml
@@ -0,0 +1,33 @@
---
name: windows

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
perl:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Perl
run: |
choco install strawberryperl
echo "C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: perl -V
run: perl -V
- name: Install dependencies
run: |
cpanm --quiet --notest --installdeps .
- name: Run tests
run: |
perl Makefile.PL
make test

0 comments on commit 6dd4f52

Please sign in to comment.