From 941c2ff5e076ed05045226dedebcb9ea05f432be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Wed, 14 Aug 2024 10:15:26 +0200 Subject: [PATCH] Update gh action version --- .github/workflows/main.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c7bd032..b5c5cd6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - name: Install dependencies diff --git a/Makefile b/Makefile index 32e3db2..c693bfb 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ coverage: ## Run tests with coverage @coverage run -m unittest -v stree.tests @coverage report -m -lint: ## Lint and static-check +lint: ## Lint source files @black stree @flake8 stree