Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.

feat: Integrate OPNsense XML generation into the configuration tool #1

feat: Integrate OPNsense XML generation into the configuration tool

feat: Integrate OPNsense XML generation into the configuration tool #1

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
ci-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
uses: astral-sh/setup-uv@v2
with:
version: latest
- name: Install just
uses: taiki-e/install-action@just
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
.uv/cache
.pytest_cache
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-uv-
- name: Install dependencies
run: |
uv sync --no-install-project --group dev
uv run pre-commit install --hook-type commit-msg
- name: Run CI checks
run: |
just ci-check
- name: Upload coverage reports
uses: codecov/codecov-action@v4
if: always()
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false