diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 87126b0..7cea055 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,5 +6,12 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Echo test - run: echo "Hello World" \ No newline at end of file + - name: Test Python + run: | + set -x + python3 --version + pip3 --version + - name: Install pytest + run: | + set -x + pip3 install pytest \ No newline at end of file