Skip to content

Add systemd example

Add systemd example #6

Workflow file for this run

name: Linting
on:
push:
branches:
- master
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true
black_args: --line-length 1000
auto_fix: true
git_email: "95386651+weee-open-bot@users.noreply.github.com"