Skip to content

Commit

Permalink
Create norminette_action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreGomesSilva committed Dec 1, 2023
1 parent 4446905 commit 275d4d9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/norminette_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: norminette

on:
push:
branches:
- main

jobs:
norminette:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install norminette
- name: Lint with norminette
run: |
norminette

0 comments on commit 275d4d9

Please sign in to comment.