tbump should be able to make signed tag #133 #310
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
name: tests | |
on: | |
push: | |
branches: [main] | |
tags: v* | |
pull_request: | |
jobs: | |
run_tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Prepare project for development | |
run: | | |
python -m pip install poetry | |
python -m poetry install | |
- name: Run tests | |
run: | | |
# tests run git commands, and they need | |
# a proper git identity for that | |
git config --global user.email "[email protected]" | |
git config --global user.name "Tasty Test" | |
python -m poetry run pytest --cov . --cov-report term |