Skip to content

chore(deps): update dependency ruff to v0.0.287 #87

chore(deps): update dependency ruff to v0.0.287

chore(deps): update dependency ruff to v0.0.287 #87

Workflow file for this run

name: Tests
on:
pull_request:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pipenv
- run: |
pip install pipenv
pipenv install --deploy --dev
- run: pipenv run ./bin/lint
- run: pipenv run ./bin/test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}