Skip to content

Commit

Permalink
build: implement lint code github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dum-U authored and luismayta committed Sep 14, 2021
1 parent 7cf645d commit de76770
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: lint-code

on:
schedule:
- cron: '0 0 * * *' # every day at midnight

push:
branches:
- develop

pull_request:
branches:
- develop

jobs:
pre-commit:
runs-on: ubuntu-20.04
steps:
- name: Checkout
if: ${{ !env.ACT }}
uses: actions/checkout@v2
- uses: hadenlabs/[email protected]
with:
args: run --all-files

0 comments on commit de76770

Please sign in to comment.