Skip to content

CI

CI #222

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 5 * * 2"
jobs:
test:
strategy:
matrix:
image: [ ubuntu, ubuntu-14.04, alpine, debian, amazonlinux, rockylinux8, rockylinux9, fedora]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test in ${{ matrix.image }}
run: ./test.sh ${{ matrix.image }}