From 83bd6b964308d796a3103e6446215ffbdcd294b2 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Tue, 2 Sep 2025 17:23:13 +1000 Subject: [PATCH] feat: Reword workflow --- .gitea/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 40fe5ac..2488d56 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,10 +1,10 @@ -name: Test Python Compatibility -run-name: Test Python Compatibility +name: Tests and Linting +run-name: Python Compatibility and Linting tests on: push: jobs: - Python-Compatibility: + Tests-Linting: runs-on: [ubuntu-latest, amd] container: catthehacker/ubuntu:act-latest strategy: @@ -29,7 +29,7 @@ jobs: fi pip install pytest ruff - - name: Run tests + - name: Test with pytest run: | echo "Testing with Python ${{ matrix.python-version }}" python -m pytest main.py