name: Python package on: [push, pull_request] jobs: Test: runs-on: ${{ matrix.os }} strategy: max-parallel: 6 matrix: os: [ "ubuntu-latest"] # , "windows-latest" # enable windows after Windows driver will be added python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] steps: - uses: actions/checkout@v3.5.0 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4.5.0 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip wheel pip install -r test_requirements.txt - name: Install package for test run: pip install -e . - name: Test run: | coverage run -m unittest discover -s urwid -v coverage report # - name: Coveralls # uses: coverallsapp/github-action@v1