summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Miko <karel.miko@gmail.com>2023-10-02 14:46:39 +0200
committerKarel Miko <karel.miko@gmail.com>2023-10-02 14:46:39 +0200
commit38620c990474074fb94c30fa4411bafaf253ed2e (patch)
treeae27f11760cc4ffae78df2f891f2590b132ba42a
parentd3b8bbfda0091d588887cf6d06ca2e7f6a1b8241 (diff)
tuning github actions (5)
-rw-r--r--.github/workflows/02-bsd-tests.yml15
1 files changed, 12 insertions, 3 deletions
diff --git a/.github/workflows/02-bsd-tests.yml b/.github/workflows/02-bsd-tests.yml
index e9e1f963..91635d81 100644
--- a/.github/workflows/02-bsd-tests.yml
+++ b/.github/workflows/02-bsd-tests.yml
@@ -17,17 +17,26 @@ jobs:
matrix:
os:
- name: freebsd
- version: '13.0'
+ version: '5.5'
pkginstall: pkg install -y p5-ExtUtils-MakeMaker p5-JSON
+ - name: freebsd
+ version: '8.4'
+ pkginstall: pkg install -y p5-ExtUtils-MakeMaker p5-JSON
+ - name: freebsd
+ version: '13.2'
+ pkginstall: pkg install -y p5-ExtUtils-MakeMaker p5-JSON
+ - name: openbsd
+ version: '4.9'
+ pkginstall: pkg_add p5-ExtUtils-MakeMaker p5-JSON
- name: openbsd
- version: '7.1'
+ version: '7.3'
pkginstall: pkg_add p5-ExtUtils-MakeMaker p5-JSON
steps:
- uses: actions/checkout@main
with:
submodules: recursive
- - name: Test on ${{ matrix.os.name }}
+ - name: Build+Test on ${{ matrix.os.name }}
uses: cross-platform-actions/action@master
with:
operating_system: ${{ matrix.os.name }}