Skip to content

fix: save device config #512

fix: save device config

fix: save device config #512

Workflow file for this run

---
name: Lint
on: # yamllint disable-line rule:truthy
# push: null
pull_request: null
permissions: {}
jobs:
build:
name: Lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.12", "3.11"]
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- uses: actions/setup-python@v5
name: Set up Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-all-${{ matrix.python-version }}.txt
shell: bash
- name: Pre-commit
uses: pre-commit/action@v3.0.1