Skip to content

Initialize in neutral configuration #16

Initialize in neutral configuration

Initialize in neutral configuration #16

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: "Lint code"
runs-on: ubuntu-latest
steps:
- name: "Checkout sources"
uses: actions/checkout@v4
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
python -m pip install ruff
- name: "Check Python code formatting"
run: |
ruff check pink_balancer
ci_success:
name: "CI success"
runs-on: ubuntu-latest
needs: [lint]
steps:
- run: echo "CI workflow completed successfully"