Bump lxml from 4.9.3 to 5.1.0 #130
Workflow file for this run
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, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install xmllint | |
run: sudo apt-get install libxml2-utils | |
- uses: actions/[email protected] | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- uses: actions/[email protected] | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: xmllint | |
run: xmllint --schema codelist.xsd --noout xml/* | |
- name: flake8 lint | |
run: flake8 --exclude=pyenv,pyenv3 --ignore E501 | |
trigger: | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- name: Trigger a build on the codelists repo | |
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/version-') }} | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
repository: codeforIATI/codelists | |
token: ${{ secrets.TOKEN }} | |
event-type: build |