Skip to content

Fixed check for extended attributes #1087

Fixed check for extended attributes

Fixed check for extended attributes #1087

Workflow file for this run

name: CI-Unit-And-Types
on:
push:
branches:
- "master"
pull_request:
jobs:
unit_tests:
name: Unit and Static Type tests for KIWI python code
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Python${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox
run: |
python -m pip install --upgrade pip
python -m pip install tox==3.28.0
- name: Run unit and type tests
run: |
tox -e unit_py3_6,unit_py3_8,unit_py3_9,unit_py3_10