Skip to content

github: test py2 on RHEL 7 #355

github: test py2 on RHEL 7

github: test py2 on RHEL 7 #355

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tox27:
runs-on: ubuntu-20.04
container:

Check failure on line 8 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
image: registry.access.redhat.com/rhel7:latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
yum -y install krb5-devel python2-devel python2-pip
pip install tox
- name: Test with tox
run: |
tox -e py27 -- errata_tool/tests
tox:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 5
matrix:
include:
- python-version: 3.6
os: ubuntu-20.04
- python-version: 3.9
os: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libkrb5-dev
pip install tox
- name: Test with tox
run: |
PY=py$(echo ${{ matrix.python-version }} | tr -d ".")
tox -e ${PY} -- --cov-report=xml errata_tool/tests
- name: Upload coverage to codecov
uses: codecov/codecov-action@v2
with:
file: ./coverage.xml
fail_ci_if_error: true