Skip to content

Bump pytest from 8.1.2 to 8.2.0 #283

Bump pytest from 8.1.2 to 8.2.0

Bump pytest from 8.1.2 to 8.2.0 #283

Workflow file for this run

name: ofxstatement
on:
push:
branches: master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- 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 pipenv coveralls
pipenv sync --dev
- name: Test with pytest
run: |
pipenv run pytest -v --cov src/ofxstatement
- name: Check with mypy
run: |
pipenv run mypy src
- name: Check with black
run: |
pipenv run black --check setup.py src
- name: Coveralls
if: ${{ success() }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN}}
COVERALLS_PARALLEL: true
run: |
coveralls --service=github
report:
needs: test
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
- name: Coveralls Finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN}}
run: |
pip install coveralls
coveralls --service=github --finish