Skip to content

IP-5086: [python-dependency-injector] Python 3.12 지원 #4

IP-5086: [python-dependency-injector] Python 3.12 지원

IP-5086: [python-dependency-injector] Python 3.12 지원 #4

Workflow file for this run

name: Test
on:
pull_request:
branches:
- master
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.11
- 3.12
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip3 install -r requirements-dev.txt
name: Install dependencies
- run: pytest -c tests/.configs/pytest.ini
name: Run tests