chore: update to pip
25.0 for Safety 75180
#166
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 | |
on: [merge_group, push, pull_request] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
steps: | |
- name: Bootstrap Debian system package dependencies | |
run: | | |
apt-get update && apt-get install --yes --no-install-recommends make sudo git git-lfs ca-certificates \ | |
python3-poetry | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
lfs: true | |
- name: Install additional packages and Python dependencies | |
run: | | |
poetry install --no-ansi | |
- name: Run linters | |
run: | | |
make lint | |
- name: Run tests except reprotest | |
run: | | |
make test | |
checksums: | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
steps: | |
- name: Bootstrap Debian system package dependencies | |
run: | | |
apt-get update && apt-get install --yes --no-install-recommends make git git-lfs gnupg ca-certificates | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
lfs: true | |
- name: Verify checksums and signatures | |
run: | | |
git config --global --add safe.directory '*' | |
./scripts/verify-sha256sum-signature securedrop-client | |
./scripts/verify-sha256sum-signature securedrop-export | |
./scripts/verify-sha256sum-signature securedrop-log |