build(deps): bump cryptography from 45.0.5 to 46.0.5 in /requirements #218
This file contains hidden or 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: make-test | |
| on: | |
| push: | |
| branches-ignore: | |
| - master | |
| - main | |
| pull_request: {} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.9' | |
| cache: pip | |
| cache-dependency-path: 'requirements/*.txt' | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get install libffi-dev libpq-dev | |
| - name: Setup Python and dependencies | |
| run: | | |
| pip install --no-warn-script-location \ | |
| -r requirements/core.txt \ | |
| -r requirements/test.txt | |
| pip install -e python-modules/cis_* | |
| - name: Run the tests! | |
| run: | | |
| ./ci/test.sh |