rtfm and adjust the checkout depth when using the snippets2changelog … #78
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
--- | |
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Test Python package | |
on: | |
push: | |
# branches: [ $default-branch ] | |
branches-ignore: | |
- 'main' | |
- 'develop' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11'] | |
# os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# all history is needed to crawl it properly | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
python -m pip install .[dev] | |
python -m pip install .[test] | |
- name: Test with tox | |
run: | | |
python -m tox -e py | |
# echo "Passing :P" | |
- name: Install deploy dependencies | |
run: | | |
python -m pip install -U setuptools wheel build | |
if [ -f requirements-deploy.txt ]; then pip install -r requirements-deploy.txt; fi | |
pip install . | |
- name: Update changelog with snippets | |
run: | | |
changelog-generator \ | |
changelog changelog.md \ | |
--snippets=.snippets \ | |
--in-place | |
- name: Build package | |
run: | | |
changelog2version \ | |
--changelog_file changelog.md \ | |
--version_file src/changelog2version/version.py \ | |
--version_file_type py \ | |
--debug | |
python -m build . | |
- name: Test built package | |
run: | | |
twine check dist/*.tar.gz |