mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
ac5b75763c
* git subrepo pull (merge) tools/splat subrepo: subdir: "tools/splat" merged: "0f6b99498e" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "a889d905d9" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * OK * git subrepo pull (merge) --force tools/splat subrepo: subdir: "tools/splat" merged: "7eb5744b2a" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "7eb5744b2a" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596"
27 lines
524 B
YAML
27 lines
524 B
YAML
name: mypy
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
mypy:
|
|
runs-on: ubuntu-latest
|
|
|
|
name: mypy
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python 3.9
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.9
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install mypy
|
|
pip install -r requirements.txt
|
|
pip install types-PyYAML
|
|
- name: mypy
|
|
run: |
|
|
mypy --show-column-numbers --hide-error-context . |