diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f49fa28..a2ee5da 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,13 +10,9 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout code - run: | - ls -la - pwd - - name: Install dependencies - run: | - pip install -e . pytest pytest-asyncio - - name: Run tests - run: | - python -m pytest tests/ -v \ No newline at end of file + - name: Checkout + uses: actions/checkout@v4 + - name: Install + run: pip install -e . pytest pytest-asyncio + - name: Test + run: python -m pytest tests/ -v \ No newline at end of file