8000 Drop Python 3.7 from tests and CI · fedora-python/lxml_html_clean@237ead0 · GitHub
[go: up one dir, main page]

Skip to content

Make our enhanced fromstring function accept bytes as well #66

Make our enhanced fromstring function accept bytes as well

Make our enhanced fromstring function accept bytes as well #66

Workflow file for this run

on:
push:
357F branches:
- main
pull_request:
branches:
- main
name: Run Tox tests
jobs:
tox_test:
name: Tox test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run Tox tests
id: test
uses: fedora-python/tox-github-action@main
with:
tox_env: ${{ matrix.tox_env }}
dnf_install: gcc libxml2-devel libxslt-devel
strategy:
matrix:
tox_env:
- py36
- py38
- py39
- py310
- py311
- py312
- py313
- mypy
# Use GitHub's Linux Docker host
runs-on: ubuntu-latest
0