Bump lxml from 5.2.2 to 5.3.0 #154
This file contains 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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: CI | |
on: | |
push: | |
paths-ignore: | |
- "**/README.rst" | |
- "**/dependabot.yml" | |
branches: [version-2.03] | |
pull_request: | |
paths-ignore: | |
- "**/README.rst" | |
- "**/dependabot.yml" | |
branches: [version-2.03] | |
concurrency: CI-2.03 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
sudo apt-get -y install libxml2-dev libxslt-dev libxslt1-dev python3-dev python3-lxml libxml2-utils | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install -r requirements.txt | |
- name: xmllint | |
run: xmllint --schema codelist.xsd --noout xml/* | |
- name: flake8 lint | |
run: flake8 --exclude=pyenv,pyenv3 --ignore E501 | |
- name: Build and test | |
run: | | |
./gen.sh | |
pytest tests | |
call-update-validator-codelists: | |
needs: build | |
if: ${{ github.event_name == 'push' && github.actor != 'dependabot[bot]' }} | |
uses: IATI/.github/.github/workflows/trigger_validator_codelists.yaml@main | |
with: | |
VERSION: '2.03' | |
secrets: | |
IATI_BOT_PAT: ${{ secrets.IATI_BOT_PAT }} | |
call-update-dss-filters: | |
needs: build | |
if: ${{ github.event_name == 'push' && github.actor != 'dependabot[bot]' }} | |
uses: IATI/.github/.github/workflows/trigger_dss_filters.yaml@main | |
secrets: | |
IATI_BOT_PAT: ${{ secrets.IATI_BOT_PAT }} | |
automerge: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: fastify/[email protected] | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} |