Skip to content

refactor: Now analyze type hints with type-analyzer #163

refactor: Now analyze type hints with type-analyzer

refactor: Now analyze type hints with type-analyzer #163

Workflow file for this run

name: CI
on:
push:
branches:
- dev
- prod
pull_request:
jobs:
ci:
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
name: Continuous Integration ・ Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Run checkout
uses: actions/checkout@v5
- name: Set up environment
uses: ./.github/actions/environment
with:
python-version: ${{ matrix.python-version }}
- name: Check code style
uses: ./.github/actions/code-style
- name: Tests
uses: ./.github/actions/tests