Fix link for badge (actions) in README #2
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 <oss@braunwarth.dev> | |
# | |
# 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: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: ./ci/setup.sh | |
- name: Run tests | |
run: ./ci/test-configs.sh |