name: Python package on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.7] defaults: run: working-directory: ./backend steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: | python -m pytest -p no:warnings - name: Notify discord uses: th0th/notify-discord@v0.4.1 if: ${{ always() }} env: DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} GITHUB_ACTOR: ${{ github.actor }} GITHUB_JOB_NAME: "Backend tests" GITHUB_JOB_STATUS: ${{ job.status }}