feat: provide list of productive sources #440
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: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
workflow_dispatch: | |
jobs: | |
# Run all tests on Windows | |
test: | |
name: CI Gate | |
runs-on: windows-latest | |
needs: | |
- commitlint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: install tools, build and test | |
env: | |
# Workaround to force usage of scoop apps installed in USERPROFILE. | |
USER_PATH_FIRST: 1 | |
run: | | |
.\build.ps1 -install | |
.\build.ps1 | |
shell: powershell | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action/composite@v2 | |
if: always() | |
with: | |
files: | | |
out/test-report.xml | |
# Make sure commit messages follow the conventional commits convention: | |
# https://www.conventionalcommits.org | |
commitlint: | |
name: Lint Commit Messages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: wagoid/commitlint-github-action@v5 | |
# Create a release with semantic versioning (https://semver.org/) | |
# using Python Semantic Release (https://python-semantic-release.readthedocs.io/en/latest/) | |
release: | |
runs-on: ubuntu-latest | |
# Ensures that this action does run only once in parallel | |
concurrency: release | |
needs: | |
- test | |
- commitlint | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Checkout of branch instead of detached head | |
ref: ${{ github.head_ref }} | |
- name: Release | |
uses: python-semantic-release/python-semantic-release@master | |
if: github.ref_name == 'develop' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Test release | |
uses: python-semantic-release/python-semantic-release@master | |
if: github.ref_name != 'develop' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
root_options: --noop |