Skip to content

Remove python 3.8 and 3.9 for macos from test workflow due to gh work… #103

Remove python 3.8 and 3.9 for macos from test workflow due to gh work…

Remove python 3.8 and 3.9 for macos from test workflow due to gh work… #103

name: Type-check package
on:
workflow_call:
workflow_dispatch:
push:
branches: ["main", "tester/*"]
pull_request:
branches: ["main"]
jobs:
type-check-package:
runs-on: ubuntu-latest
env:
INTERPRETER: python
PIP: python -m pip
steps:
- uses: actions/checkout@v3
- name: Set Up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install package type-checker
run: make install-package-type-checker
- name: Type-check package
run: make type-check-package