diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b43bd7d..bfd62bf 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,26 +1,9 @@ name: CI - on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout - run: | - pwd - ls -la - - - name: Setup Python - run: | - python3 -m pip install --upgrade pip - python3 -c "import sys; print(f'Python {sys.version}')" - - - name: Install dependencies - run: | - pip3 install -r requirements.txt - pip3 install pytest - - - name: Run tests - run: | - pytest3 tests/ -v \ No newline at end of file + - name: Hello + run: echo "Hello World" \ No newline at end of file