Skip to content

Bump zipp from 3.17.0 to 3.19.1 #38

Bump zipp from 3.17.0 to 3.19.1

Bump zipp from 3.17.0 to 3.19.1 #38

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pr_lint_test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python location
run: |
python_path=$(which python 2>&1)
echo "Python path: $python_path"
site_packages="Site packages path: $( cd "$(dirname "$(dirname "$python_path")")"/lib/python${{ matrix.python-version }}/site-packages ; pwd -P )"
echo $site_packages
- name: Cache dependencies
id: myCache
uses: actions/cache@v4
with:
path: ${{env.LD_LIBRARY_PATH}}/python${{ matrix.python-version }}/site-packages
key: ${{ runner.os }}-pip-v0-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
if: steps.myCache.outputs.cache-hit != 'true'
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Format the code with black
run: python -m black bcdi --check
- name: Check imports with isort
run: python -m isort --profile black bcdi
- name: Lint with ruff
run: python -m ruff check .
- name: Check docstrings with pydocstyle
run: python -m pydocstyle bcdi --ignore=D102,D107,D212,D203
- name: Type check with mypy
run: python -m mypy bcdi
- name: Test with pytest
run: python -m pytest