Bump lxml from 5.3 to 6.1.0 #216
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Test-dev" | |
| on: | |
| push: | |
| branches: ["master", "dev", "dev2", "github-action"] | |
| pull_request: | |
| schedule: | |
| - cron: "33 1 * * 3" | |
| workflow_dispatch: | |
| jobs: | |
| ubuntu: | |
| name: Test on Ubuntu | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - 3.14 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: List files | |
| run: ls -l | |
| - name: Install build/devel dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libxml2-dev libxslt1-dev | |
| - name: Install dependencies | |
| run: sh ./scripts/test-deps.sh | |
| - name: Run tests | |
| env: | |
| SKIP_TEST_SLOB_WRITE_FILE_SIZE_APPROX: 1 | |
| run: bash scripts/ci/test.sh | |
| - name: Upload test artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pyglossary-test-ubuntu-py${{ matrix.python-version }} | |
| path: artifacts |