add deprecation warning for Fedora 39 and older #467
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker-install CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
strategy: | |
matrix: | |
os: | |
- ubuntu:20.04 | |
- ubuntu:22.04 | |
- ubuntu:24.04 | |
- quay.io/centos/centos:stream9 | |
version: | |
- "26.1" | |
- "" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Shellcheck | |
run: make shellcheck | |
- name: Check distribution | |
run: TEST_IMAGE=${{ matrix.os }} VERSION=${{ matrix.version }} make test |