mirror of
https://github.com/Mo3he/Axis_Cam_Tailscale.git
synced 2026-09-27 10:14:16 +00:00
23 lines
440 B
YAML
23 lines
440 B
YAML
---
|
|
name: Lint
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
Build:
|
|
name: Lint code base
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Environment
|
|
run: cat .github/super-linter.env >> "$GITHUB_ENV"
|
|
|
|
- name: Lint code base
|
|
uses: super-linter/super-linter/slim@v8
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|