define type_params on gast.ClassDef instantiation to support compatibility with python>=3.12 #520
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: integration-tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
actions: read | |
contents: write | |
jobs: | |
kornia: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target : [ jax, numpy, tensorflow ] | |
steps: | |
- name: Checkout Ivy 🛎 | |
uses: actions/checkout@v3 | |
with: | |
path: ivy | |
persist-credentials: false | |
fetch-depth: 100 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install ivy | |
run: | | |
cd ivy | |
pip install -e . | |
- name: Run Tests | |
id: tests | |
run: | | |
cd ivy | |
scripts/shell/run_integration_tests.sh kornia ${{ matrix.target }} ${{ secrets.IVY_API_KEY }} | |
continue-on-error: true | |
- name: Check on failures | |
if: steps.tests.outcome != 'success' | |
run: exit 1 |