Skip to main content

CI/CD Pipeline

info

Learn how to set up CI/CD pipelines for Fluvius Framework applications.

GitHub Actions

Basic Workflow

name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: pip install -r requirements.txt
- run: pytest

Next Steps