From e1c8f96ac4fa86821c22b1d96f71a8fd6c840583 Mon Sep 17 00:00:00 2001 From: Wolfgang Schnerring Date: Tue, 6 Feb 2024 08:57:03 +0100 Subject: [PATCH] debug lxml --- .github/workflows/debug.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/debug.yaml diff --git a/.github/workflows/debug.yaml b/.github/workflows/debug.yaml new file mode 100644 index 0000000000..1215e52d35 --- /dev/null +++ b/.github/workflows/debug.yaml @@ -0,0 +1,20 @@ +name: Debug lxml + +on: + pull_request: + +jobs: + test: + runs-on: zon-ubuntu-general-dind + permissions: + contents: read + + steps: + - uses: actions/setup-python@v5.0.0 + with: + python-version: "3.10" + - run: | + python3.10 -m venv venv + venv/bin/pip install -i https://devpi.zeit.de/zeit/default/+simple lxml==4.2.3 + - run: | + venv/bin/python -c "import lxml.etree"