Merge pull request #49 from certtools/fix-48-log-all #190
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
#Github Workflow Python unittests | |
# | |
#SPDX-FileCopyrightText: 2020 nic.at GmbH | |
#SPDX-License-Identifier: AGPL-3.0-or-later | |
name: "Python unittests" | |
on: | |
push: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install .[dev] | |
- name: Run unittests | |
run: | | |
python -m unittest discover -s tests/ |