Skip to content

chore(deps-dev): bump cryptography from 41.0.6 to 42.0.4 (#28) #141

chore(deps-dev): bump cryptography from 41.0.6 to 42.0.4 (#28)

chore(deps-dev): bump cryptography from 41.0.6 to 42.0.4 (#28) #141

Workflow file for this run

name: Run all tests
on:
push:
branches:
- develop
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10" ]
name: Run tests for Python ${{ matrix.python-version }}
permissions:
checks: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: make test
- uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
junit_files: src/reports/**/junit*.xml
- name: Archive test and coverage reports
uses: actions/upload-artifact@v3
with:
name: test-and-coverage-report
path: src/reports