Skip to content

build(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.11.2 to 5.11.3 #814

build(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.11.2 to 5.11.3

build(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.11.2 to 5.11.3 #814

Workflow file for this run

name: Python
on:
- push
- pull_request
permissions:
contents: read
jobs:
python:
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Check out GitHub repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install development dependencies
run: pip install -r requirements.txt
working-directory: ./applications/generate
- name: Run type check
run: mypy philadelphia
working-directory: ./applications/generate
- name: Install application
run: pip install .
working-directory: ./applications/generate