Skip to content

Dev/bach

Dev/bach #19

Workflow file for this run

name: CI/CD Test
on:
push:
branches: main
pull_request:
branches: main
workflow_dispatch:
jobs:
test:
runs-on: research-utils
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run test_flow.py
working-directory: ./tests
run: python test_flows.py
env:
S3_ACCESS_KEY: ${{ secrets.MINIO_ACCESS_KEY_ID }}
S3_SECRET_KEY: ${{ secrets.MINIO_SECRET_ACCESS_KEY }}
S3_ENDPOINT_URL: ${{ secrets.MINIO_ENDPOINT }}