Skip to content

make unicoder

make unicoder #21

Workflow file for this run

name: typehints check
on:
push:
branches: [ develop, main ]
pull_request:
branches: [ develop, main ]
workflow_dispatch:
jobs:
mypy:
name: mypy typehints check
runs-on: 'ubuntu-latest'
steps:
- name: checkout unicoder
uses: actions/checkout@v2
with:
path: software
- name: 'refresh install'
run: |
sudo apt-get update --fix-missing
- name: 'install python3 mypy'
run: |
sudo apt-get install --fix-broken --ignore-missing python3-typed-ast mypy
- name: 'show mypy directories'
run: |
find . -type d
mypy --version
- name: 'make type (mypy strict type checking)'
id: check
run: |
make type -C software PARALLEL=