From dbb6fcc5b19b2ab981f4924b3272f7413961e54f Mon Sep 17 00:00:00 2001 From: GogoVega <92022724+GogoVega@users.noreply.github.com> Date: Sat, 4 May 2024 17:37:09 +0200 Subject: [PATCH] Fix Tests workflow (norminette missing) --- .github/workflows/tests.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ff347aa..4af01d3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,11 +17,19 @@ 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" + + - 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