Add workflow to publish on Test PyPI #2
Workflow file for this run
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
# SPDX-FileCopyrightText: 2023 Ludwig Hülk <https://github.com/Ludee> © Reiner Lemoine Institut | |
# SPDX-FileCopyrightText: 2023 Jonas Huber <https://github.com/jh-rli> © Reiner Lemoine Institut | |
# SPDX-License-Identifier: MIT | |
name: tox | |
on: | |
push: | |
branches: [production, develop] | |
pull_request: | |
branches: [production, develop] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, windows-latest] | |
python-version: ['3.10'] | |
tox-envs: [test, lint] | |
isMerge: | |
- ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
exclude: | |
- isMerge: true | |
tox-envs: pr | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install tox tox-gh-actions | |
- name: Run tox unit tests | |
run: tox -e ${{ matrix.tox-envs }} |