mirror of
https://github.com/nix-community/awesome-nix
synced 2024-11-10 07:44:13 +00:00
Create awesome-lint GitHub Action to check style coherence (#46)
This commit is contained in:
parent
a53b18ccca
commit
ed8e333faf
1 changed files with 12 additions and 0 deletions
12
.github/workflows/main.yml
vendored
Normal file
12
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: CI
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
jobs:
|
||||
Awesome_Lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- run: npx awesome-lint
|
Loading…
Reference in a new issue