Skip to content

Bump pytest from 7.4.3 to 7.4.4 #133

Bump pytest from 7.4.3 to 7.4.4

Bump pytest from 7.4.3 to 7.4.4 #133

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Set up Poetry 2.1.0
uses: abatilo/[email protected]
with:
poetry-version: 1.1.2
- name: Run tests
run: make tests
- name: Upload coverage
uses: codecov/codecov-action@v1
# with:
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
# - name: Report results to DeepSource
# run: |
# curl https://deepsource.io/cli | sh
# ./bin/deepsource report --analyzer test-coverage --key python --value-file ./coverage.xml
# env:
# DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}