Skip to content

Bump python-injection to 0.25.1 #115

Bump python-injection to 0.25.1

Bump python-injection to 0.25.1 #115

Workflow file for this run

name: CI
on:
push:
branches:
- dev
- prod
pull_request:
jobs:
ci:
name: Continuous Integration
runs-on: ubuntu-latest
permissions:
contents: read
env:
PROFILE: test
services:
database:
image: postgres:alpine
env:
POSTGRES_DB: python-injection-example.test
POSTGRES_USER: root
POSTGRES_PASSWORD: rootpassword
ports:
- 5432:5432
s3:
image: bitnamilegacy/minio
env:
MINIO_ROOT_USER: root
MINIO_ROOT_PASSWORD: rootpassword
ports:
- 9000:9000
steps:
- name: Run checkout
uses: actions/checkout@v5
- name: Set up environment
uses: ./.github/actions/environment
- name: Check code style
uses: ./.github/actions/code-style
- name: Apply migrations
uses: ./.github/actions/apply-migrations
- name: Check migrations
uses: ./.github/actions/check-migrations
- name: Tests
uses: ./.github/actions/tests