Skip to content

[benchmarks/pypsa] Simplify config files and shrink benchmarks #121

[benchmarks/pypsa] Simplify config files and shrink benchmarks

[benchmarks/pypsa] Simplify config files and shrink benchmarks #121

Workflow file for this run

name: CI
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
# workflow_dispatch:
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Check code formatting
run: |
python -m venv /tmp/venv
pip install --upgrade pip pre-commit
pre-commit install
pre-commit run --all-files