diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e591bbf..e363f9c 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -7,9 +7,31 @@ on: branches: ["main"] jobs: + + test: + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.10' + + - name: Install dependencies + run: | + pip install pytest + + - name: Run tests + run: pytest -q + + + + + build: - + needs: test steps: - name: Checkout repository uses: actions/checkout@v4