Skip to content

chore(deps): bump jinja2 from 3.1.4 to 3.1.5 in the pip group across 1 directory #5

chore(deps): bump jinja2 from 3.1.4 to 3.1.5 in the pip group across 1 directory

chore(deps): bump jinja2 from 3.1.4 to 3.1.5 in the pip group across 1 directory #5

Workflow file for this run

name: Linter and tests for Bitbucket Bot
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
paths:
- app/**
- tests/**
- Pipfile*
jobs:
release:
name: Linter and tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.x
check-latest: true
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- id: cache-pipenv
uses: actions/cache@v4
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
- name: Install dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: |
pipenv install --system --deploy --dev
- name: pylint
run: |
pylint app
- name: pylint
run: |
pytest