Skip to content

build(deps): bump wheel from 0.38.0 to 0.38.1 (#19) #116

build(deps): bump wheel from 0.38.0 to 0.38.1 (#19)

build(deps): bump wheel from 0.38.0 to 0.38.1 (#19) #116

Workflow file for this run

name: Ubuntu
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: 3.11
env:
TOXENV: py
# pinned deps
- python-version: 3.11
env:
TOXENV: extra-deps
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 system libraries
if: matrix.python-version == 'pypy3.11' || contains(matrix.env.TOXENV, 'pinned')
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxslt-dev
- name: Run tests
env: ${{ matrix.env }}
run: |
pip install -U tox
pwd
ls -ltr
tox
- name: Upload coverage report
run: bash <(curl -s https://codecov.io/bash)