Skip to content

chore(deps): bump buildpacks/github-actions from 5.8.4 to 5.8.8 in the ci-dependencies group #220

chore(deps): bump buildpacks/github-actions from 5.8.4 to 5.8.8 in the ci-dependencies group

chore(deps): bump buildpacks/github-actions from 5.8.4 to 5.8.8 in the ci-dependencies group #220

Workflow file for this run

name: Pull Request Events
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test-unit:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout code
uses: actions/checkout@v4
with:
show-progress: false
- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: 🖇️ Install dependencies
run: sudo apt-get update && sudo apt-get install libpoppler-dev poppler-utils -y
- name: 📥 Download dependencies
run: pip install -r requirements.tests.txt
- name: 🧪 Run tests
run: pytest
- name: 📤 Report coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./cov.xml