STASH #47
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
# SPDX-FileCopyrightText: 2025 Daniel Braunwarth <[email protected]> | |
# | |
# SPDX-License-Identifier: MIT | |
name: CI tests | |
on: | |
push | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
- ubuntu:22.04 | |
- ubuntu:24.04 | |
- debian:bookworm-slim | |
- debian:testing-slim | |
name: ${{ matrix.container }} | |
runs-on: ubuntu-24.04 | |
container: ${{ matrix.container }} | |
steps: | |
- name: Install Git in container | |
run: | | |
apt-get update -qq && apt-get install --yes --no-install-recommends \ | |
ca-certificates git | |
- uses: actions/checkout@v4 | |
- name: Workaround checkout bug | |
run: git config --global --add safe.directory "${PWD}" | |
- name: Install dependencies | |
run: ./ci/setup.sh | |
- name: Run tests | |
run: ./ci/test-configs.sh |