Skip to content

feat: Bump to 0.1.1

feat: Bump to 0.1.1 #2

Workflow file for this run

name: Check Mypy
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
paths-ignore:
- '.github/workflows/**'
- '**/*.md'
workflow_dispatch:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install mypy
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: run Mypy
run: mypy
- name: Check if mypy passed
run: |
if [ $? -ne 0 ]; then
echo "mypy failed!";
exit 1;
else
echo "mypy passed!";
fi