fix #183
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: CI | |
on: # yamllint disable-line rule:truthy | |
- push | |
- pull_request | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
- debian:bullseye-slim | |
- debian:bookworm-slim | |
- debian:testing-slim | |
- debian:unstable-slim | |
- ubuntu:jammy | |
- ubuntu:lunar | |
- ubuntu:mantic | |
container: | |
image: ${{ matrix.container }} | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: > | |
apt-get update && | |
apt-get install --no-install-recommends --yes | |
pandoc python3 python3-ruamel.yaml python3-setuptools | |
- name: Run build | |
run: python3 setup.py build | |
- name: Run install | |
run: python3 setup.py install | |
unittest: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
- debian:bullseye-slim | |
- debian:bookworm-slim | |
- debian:testing-slim | |
- debian:unstable-slim | |
- ubuntu:jammy | |
- ubuntu:lunar | |
- ubuntu:mantic | |
container: | |
image: ${{ matrix.container }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: > | |
apt-get update && | |
apt-get install --no-install-recommends --yes black isort pylint | |
python3 python3-coverage python3-flake8 python3-ruamel.yaml | |
shellcheck | |
- name: Run unit tests | |
run: | | |
python3 -m coverage run -m unittest discover -v | |
python3 -m coverage xml | |
- name: Install dependencies for Codecov | |
run: > | |
apt-get install --no-install-recommends --yes | |
ca-certificates curl git | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: true | |
files: ./coverage.xml | |
system-testing: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
# - debian:testing-slim # missing ubuntu-keyring | |
- debian:unstable-slim | |
- ubuntu:jammy | |
- ubuntu:lunar | |
- ubuntu:mantic | |
container: | |
image: ${{ matrix.container }} | |
options: --privileged | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: > | |
apt-get update && | |
apt-get install --no-install-recommends --yes debian-archive-keyring | |
diffoscope-minimal distro-info-data dpkg-dev mmdebstrap | |
python3-ruamel.yaml python3 squashfs-tools-ng ubuntu-keyring | |
- name: Run system-testing | |
run: ./system-testing | |
yamllint: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:testing-slim | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
apt-get update | |
apt-get install --no-install-recommends --yes yamllint | |
- name: Run yamllint | |
run: | | |
yamllint . |