Skip to content

Bump actions/setup-python from 4.5.0 to 4.7.0 in /actions/signing-event #59

Bump actions/setup-python from 4.5.0 to 4.7.0 in /actions/signing-event

Bump actions/setup-python from 4.5.0 to 4.7.0 in /actions/signing-event #59

Workflow file for this run

name: Lint & test
on:
push:
pull_request:
permissions: {}
jobs:
build-and-test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435
with:
python-version: "3.11"
cache: 'pip'
cache-dependency-path: "**/pyproject.toml"
- name: Install system dependencies for e2e test
run: |
sudo apt-get install libfaketime softhsm2
echo "PYKCS11LIB=/usr/lib/softhsm/libsofthsm2.so" >> $GITHUB_ENV
- name: Install tox
run: python -m pip install tox
- name: Lint
run: tox -m lint
- name: Repository unit tests
run: tox -e test-repo
- name: End-to-end tests
run: tox -e test-e2e