8000 Simplified systemd service installation (#3) · SEA-AI/protorec@fbf6185 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Simplified systemd service installation (#3) #19

Simplified systemd service installation (#3)

Simplified systemd service installation (#3) #19

Workflow file for this run

name: Code Quality
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
ruff-linter:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
# need to go first as it cleans the directory
- uses: actions/checkout@v4
with:
clean: true
- uses: astral-sh/ruff-action@v3
with:
version: 'latest'
ruff-format:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
# need to go first as it cleans the directory
- uses: actions/checkout@v4
with:
clean: true
- uses: astral-sh/ruff-action@v3
with:
version: 'latest'
args: 'format --diff'
0