Skip to content

Fix Proxmox LXC installation 404 error #77

Fix Proxmox LXC installation 404 error

Fix Proxmox LXC installation 404 error #77

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run tests
run: pytest -q
- name: Run linters
run: |
black --check .
isort --check-only .
mypy src