Skip to content

don't fail when DNF can't reach repos during sub-man prereqs #138

don't fail when DNF can't reach repos during sub-man prereqs

don't fail when DNF can't reach repos during sub-man prereqs #138

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- "lint"
- "test-centos:6"
- "test-centos:7"
- "test3-centos:stream8"
- "test3-centos:stream9"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
if: matrix.target == 'lint'
- name: Install
run: pip install flake8 'pylint<2.13' 'astroid<2.13' 'isort<5'
if: matrix.target == 'lint'
- name: Run tests
run: make ${{ matrix.target }}