Skip to content

Bump actions/checkout from 3 to 4 #121

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #121

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@v3
if: matrix.target == 'lint'
- name: Install
run: pip install flake8 'pylint<2.13'
if: matrix.target == 'lint'
- name: Run tests
run: make ${{ matrix.target }}