mirror of
https://github.com/markusressel/zfs-inplace-rebalancing
synced 2026-03-24 12:18:40 +00:00
42 lines
690 B
YAML
42 lines
690 B
YAML
# Test
|
|
|
|
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
linuxTest:
|
|
name: Test on Linux
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run testing script
|
|
run: ./testing.sh
|
|
|
|
macOsTest:
|
|
name: Test on macOS
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run testing script on macOS
|
|
run: ./testing.sh
|
|
|
|
FreeBSDTest:
|
|
name: Test on FreeBSD
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Test in FreeBSD
|
|
id: test
|
|
uses: vmactions/freebsd-vm@v1
|
|
with:
|
|
usesh: true
|
|
|
|
run: ./testing.sh |