Skip to content

feat: Add control to use timestamp to trigger the package creation or not (useful for CI/CD) #206

feat: Add control to use timestamp to trigger the package creation or not (useful for CI/CD)

feat: Add control to use timestamp to trigger the package creation or not (useful for CI/CD) #206

Workflow file for this run

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/