Skip to content

Merge pull request #112 from heiderich/ota_platform #35

Merge pull request #112 from heiderich/ota_platform

Merge pull request #112 from heiderich/ota_platform #35

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
name: "Linting and formatting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: "Install Python dependencies"
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- uses: pre-commit/action@v3.0.1
# - uses: pre-commit-ci/lite-action@v1.0.2
# if: always()