feat: Add control to use timestamp to trigger the package creation or not (useful for CI/CD) #206
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: Tests | |
env: | |
PYTEST_VERSION: 7.1.3 | |
on: | |
push: | |
branches: [master] | |
tags: ["*"] | |
pull_request: | |
branches: [master] | |
jobs: | |
tests: | |
name: Test with Python ${{ matrix.python_version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python_version: ["3.7", "3.8", "3.9", "3.10"] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python_version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install poetry and tox | |
shell: bash | |
run: | | |
pip install pytest==${PYTEST_VERSION} | |
- name: Run tox | |
shell: bash | |
run: | | |
python -m pytest -vvv tests/ |