Skip to content

Commit

Permalink
Fix Tests workflow (norminette missing)
Browse files Browse the repository at this point in the history
  • Loading branch information
GogoVega committed May 4, 2024
1 parent 87c9a29 commit 907fdbe
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,20 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Run Build
run: make all
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.10
cache: "pip"

- name: Install Norminette
run: pip install norminette

- name: Run Norminette
run: make norme

- name: Run Build
run: make all

- name: Run Test
run: make test

0 comments on commit 907fdbe

Please sign in to comment.