mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-20 13:42:23 +02:00
18 lines
281 B
YAML
18 lines
281 B
YAML
---
|
|
name: Ruff
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint-and-format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: astral-sh/ruff-action@v3.2.1
|
|
with:
|
|
args: check
|
|
src: "."
|
|
|
|
- run: "ruff format --check --diff"
|