Skip to content

fix: bump uv from 0.10.6 to 0.10.7 #64

fix: bump uv from 0.10.6 to 0.10.7

fix: bump uv from 0.10.6 to 0.10.7 #64

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- '**'
tags:
- 'v*.*.*'
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
cache:
uses: milsman2/python-app-template/.github/workflows/cache-uv-build.yaml@main
lint:
uses: milsman2/python-app-template/.github/workflows/ruff.yaml@main
needs: cache
test:
needs: [lint, cache]
uses: milsman2/python-app-template/.github/workflows/pytest.yaml@main
docker-build-and-image-scan:
if: github.event_name == 'push'
needs: test
uses: milsman2/python-app-template/.github/workflows/docker-build-and-scan.yaml@main
with:
DOCKER_PATH_CONTEXT: .
DOCKER_BUILD_DOCKERFILE: ./Dockerfile
DOCKER_TAGS: ${{ github.repository }}:${{ github.sha }}
DOCKER_LOAD_BOOL: false
DOCKER_PUSH_BOOL: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') }}
secrets: inherit
release:
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
needs: [test, docker-build-and-image-scan]
uses: ./.github/workflows/release.yaml
permissions:
contents: write
secrets: inherit
trigger-auto-merge:
needs: release
if: needs.release.result == 'success'
uses: ./.github/workflows/auto-merge-on-release.yml
permissions:
contents: write
pull-requests: write
with:
head_branch: ${{ github.ref_name }}
secrets: inherit