Skip to content

chore: dependabot

chore: dependabot #199

Workflow file for this run

name: CI
on:
push:
branches: [main]
concurrency:
group: ci-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: 1
FORCE_COLOR: 1 # colored output by pytest etc.
permissions:
contents: read
jobs:
lint:
uses: ./.github/workflows/lint.yml
test:
uses: ./.github/workflows/test.yml
release:
# do not run in forks
if: github.repository == 'afuetterer/services-test4'
name: Semantic release
runs-on: ubuntu-22.04
needs:
- lint
- test
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
- name: Create semantic release
id: semantic-release
uses: python-semantic-release/python-semantic-release@31a691e771e103d6b9c70baafc75fb2cc9f48207 # v9.8.0
with:
github_token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}