Skip to content

linux install

linux install #1105

Workflow file for this run

name: linux install
on:
pull_request:
paths:
- .github/workflows/linux-verify.yml
- templates/linux/**/*
schedule:
- cron: '0 0 * * *' # Midnight - every night
defaults:
run:
working-directory: ./templates/linux
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
os:
- quay.io/centos/centos:stream8
- quay.io/centos/centos:stream9
- ubuntu:20.04
- ubuntu:22.04
- ubuntu:24.04
- debian:11
- debian:12
steps:
- uses: actions/checkout@v4
- name: Shellcheck
run: make shellcheck
- name: Check distribution
run: TEST_IMAGE=${{ matrix.os }} make test