Do not add Jira comment when there is no jira_id #607
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: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# Do not test in 3.12, the setup-python action is still not stable for | |
# that version | |
python-version: ["3.9", "3.11"] | |
container: | |
image: "fedora:latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install python ${{ matrix.python-version }}" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: "Install dependencies" | |
run: | | |
python -m pip install hatch | |
dnf -y install make | |
make system/fedora | |
- name: Run unittests | |
run: hatch run +py=${{ matrix.python-version }} test:unit | |
# https://projects.gentoo.org/python/guide/distutils.html#setuptools-scm-flit-scm-hatch-vcs-pdm-backend-and-snapshots | |
env: | |
SETUPTOOLS_SCM_PRETEND_VERSION: 0.1.0 |