Skip to content

Bump pytest from 8.2.0 to 8.3.1 #126

Bump pytest from 8.2.0 to 8.3.1

Bump pytest from 8.2.0 to 8.3.1 #126

Workflow file for this run

name: build
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
os: [ubuntu-latest]
env:
USING_COVERAGE: "3.10"
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache Dependencies
uses: actions/cache@v2
with:
path: |
~/.cache/pip
venv
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: |
make install-dev
make install-test
- name: Lint and Autoformat
run: |
make lint
make lint-notebooks
continue-on-error: false
- name: Run Tests and Coverage
run: |
make coverage
# TO DO: Add codecov
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v2
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: true