Skip to content

Commit

Permalink
Merge pull request #1 from sina2/master
Browse files Browse the repository at this point in the history
Create test.yml for GitHunb Actions
  • Loading branch information
sina2 authored Dec 18, 2023
2 parents 8ecc9e0 + 8e31ffb commit b1a5410
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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.34' , '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

0 comments on commit b1a5410

Please sign in to comment.