From a4127b1d7692bb8523bd8462f7bd9fb91fdcaa6c Mon Sep 17 00:00:00 2001 From: sina Date: Sun, 13 Dec 2020 17:58:32 +0900 Subject: [PATCH 1/2] Create test.yml for GitHunb Actions --- .github/workflows/test.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..e56e003 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,31 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. +on: + push: + + pull_request: + + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# https://shogo82148.github.io/blog/2019/09/18/actions-setup-perl/ +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] + perl: [ '5.32', '5.30', '5.28' ] + name: Perl ${{ matrix.perl }} on ${{ matrix.os }} + steps: + - uses: actions/checkout@v1 + - name: Setup perl + uses: shogo82148/actions-setup-perl@v1 + with: + perl-version: ${{ matrix.perl }} + - run: perl -V + - run: ./bgsound.cgi && ./Hirame_LE.cgi && ./Icons_Edit.cgi && ./moe_bbs_adm.cgi From 8e31ffb082c46b9146585c22d82a325c92a99d56 Mon Sep 17 00:00:00 2001 From: sina Date: Sat, 5 Jun 2021 17:24:00 +0900 Subject: [PATCH 2/2] Update test.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Perl 5.34 がリリースされました http://disq.us/t/3x9gudt --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e56e003..260ac7d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] - perl: [ '5.32', '5.30', '5.28' ] + perl: [ '5.34' , '5.32', '5.30', '5.28' ] name: Perl ${{ matrix.perl }} on ${{ matrix.os }} steps: - uses: actions/checkout@v1