Forward HTTP host to proxy #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Actions workflow for linting the systemd unit files | |
# https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions | |
name: Lint systemd units | |
on: [ push ] | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install systemdlint | |
run: pip install systemdlint==1.* | |
- name: Lint systemd units | |
run: systemdlint ./config/systemd/* |