Skip to content

[main][579317](Bug) [PUBLIC] A ConnectError occurs frequently in Maya if the Flix Maya Extension is installed and Flix is not open #46

[main][579317](Bug) [PUBLIC] A ConnectError occurs frequently in Maya if the Flix Maya Extension is installed and Flix is not open

[main][579317](Bug) [PUBLIC] A ConnectError occurs frequently in Maya if the Flix Maya Extension is installed and Flix is not open #46

Workflow file for this run

name: PR Checker
on:
pull_request:
defaults:
run:
working-directory: ./flixpy
jobs:
ruff-check:
name: Ruff Check
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/workflows/setup
with:
python_version: ${{ matrix.python_version }}
- name: Test
run: poetry run ruff check
ruff-format:
name: Ruff Format
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/workflows/setup
with:
python_version: ${{ matrix.python_version }}
- name: Test
run: poetry run ruff format --check
mypy:
name: Mypy
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/workflows/setup
with:
python_version: ${{ matrix.python_version }}
- name: Test
run: poetry run mypy