Bump sphinx from 7.4.5 to 7.4.6 #185
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
name: CI_version-2.02 | |
on: | |
push: | |
paths-ignore: | |
- "**/README.rst" | |
- "**/dependabot.yml" | |
branches: [version-2.02] | |
pull_request: | |
paths-ignore: | |
- "**/README.rst" | |
- "**/dependabot.yml" | |
branches: [version-2.02] | |
concurrency: CI-2.02 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Checkout Schemas repo | |
uses: actions/checkout@v4 | |
with: | |
repository: IATI/IATI-Schemas | |
ref: version-2.02 | |
path: IATI-Schemas | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install libxml2-utils python3-dev python3-lxml | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install -r requirements.txt | |
- name: Run schema validation with xmllint | |
run: | | |
xmllint --schema IATI-Schemas/iati-activities-schema.xsd --noout en/activity-standard/*.xml | |
xmllint --schema IATI-Schemas/iati-organisations-schema.xsd --noout en/organisation-standard/*.xml | |
- name: Build and test | |
run: | | |
cd en | |
make dirhtml | |
cd .. | |
cd fr | |
make dirhtml | |
cd .. | |
pytest tests | |
automerge: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: fastify/[email protected] | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} |