Skip to content

Update all non-major dependencies (#1107) #3151

Update all non-major dependencies (#1107)

Update all non-major dependencies (#1107) #3151

name: Integration Tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run pytest
runs-on: ubuntu-24.04
timeout-minutes: 15
strategy:
matrix:
python-version: ['3.12', '3.13', '3.14']
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Set Up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Codemodder Package
run: pip install .
- name: Install Dependencies
run: pip install ".[test]"
- name: Run integration tests
run: make integration-test