Skip to content

Add .ignore file to temp directory to prevent indexing by Jellyfin #271

Add .ignore file to temp directory to prevent indexing by Jellyfin

Add .ignore file to temp directory to prevent indexing by Jellyfin #271

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main, master, develop ]
pull_request:
branches: [ main, master, develop ]
workflow_dispatch:
jobs:
ruff-lint:
name: Lint with Ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Ruff
run: |
python -m pip install ruff
- name: Run Ruff check
run: |
ruff check . --fix