From 2efa5ccec81ed934fc7cf188b6cdf165d895e4a6 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Tue, 19 Nov 2024 20:04:36 +0100 Subject: [PATCH] Setup python and make --- .forgejo/workflows/check.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/check.yml b/.forgejo/workflows/check.yml index 8f68941..16662d5 100644 --- a/.forgejo/workflows/check.yml +++ b/.forgejo/workflows/check.yml @@ -7,8 +7,8 @@ jobs: DIRECTORY: config steps: - uses: actions/checkout@v4 - - run: cd ${{ env.DIRECTORY }} - - run: pip install -r requirements-dev.txt - - run: ruff check - - run: ruff format - - run: myp \ No newline at end of file + - uses: actions/setup-python@v5 + with: + python-version: '3.13' + - run: pip install -r requirements.txt + - run: make check \ No newline at end of file