Merge pull request #482 from theupdateframework/release-prep/v0.14.0 #1070
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: Lint & test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
permissions: {} | |
jobs: | |
test: | |
permissions: | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
toxenv: [lint-signer, test-signer] | |
pyversion: ['3.9', '3.12'] | |
os: [ubuntu-latest, macos-latest] | |
# Only run repository on 3.12 (dependency pinning is easier with single version) | |
include: | |
- toxenv: lint-repo | |
pyversion: '3.12' | |
os: ubuntu-latest | |
- toxenv: test-repo | |
pyversion: '3.12' | |
os: ubuntu-latest | |
- toxenv: test-e2e | |
pyversion: '3.12' | |
os: ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
env: | |
TOXENV: ${{ matrix.toxenv }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: ${{ matrix.pyversion }} | |
cache: 'pip' | |
cache-dependency-path: | | |
signer/pyproject.toml | |
repo/pyproject.toml | |
action-constraints.txt | |
build/build-constraints.txt | |
- name: Install system dependencies for e2e test | |
if: matrix.toxenv == 'test-e2e' | |
run: | | |
sudo apt-get install libfaketime softhsm2 | |
echo "PYKCS11LIB=/usr/lib/softhsm/libsofthsm2.so" >> $GITHUB_ENV | |
- name: Install tox | |
run: python -m pip install -c build/build-constraints.txt tox | |
- name: ${{ matrix.toxenv }} | |
run: tox |