1
1
mirror of https://github.com/containers/udica synced 2026-03-14 19:55:45 +01:00
udica/.github/workflows/checks.yml
Vit Mojzis 0472a15e99 github: disable testing on centos8
Centos8 container always fails with
   Curl error (6): Couldn't resolve host name for
   mirrorlist.centos.org

Signed-off-by: Vit Mojzis <vmojzis@redhat.com>
2025-03-07 23:24:38 +01:00

32 lines
983 B
YAML

name: checks
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update -y
- run: sudo apt-get install -y python3-pip python3-setuptools
- run: sudo pip3 install black pyflakes
- run: make format-check
- run: make lint
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image:
# test on Fedora Rawhide
- quay.io/fedora/fedora:rawhide
# test on the latest stable release of Fedora
- quay.io/fedora/fedora:latest
# test on the latest stable release of Centos stream
- quay.io/centos/centos:stream9
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- run: rpm -q python3 || dnf install --nogpgcheck -y python3
- run: rpm -q git || dnf install --nogpgcheck -y git
- run: python3 -m unittest -v tests/test_unit.py