Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/expose_batch
Browse files Browse the repository at this point in the history
  • Loading branch information
carmocca committed Jul 12, 2021
2 parents 1a7146c + f3e8284 commit a519250
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 76 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Check code"

on: # Trigger the workflow on push or pull request, but only for the master branch
push:
branches: [master, "release/*"]
pull_request:
branches: [master, "release/*"]

jobs:
python-typing-mypy:
name: Python typing Mypy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install mypy
run: |
pip install mypy==0.790
pip list
- run: mypy
76 changes: 0 additions & 76 deletions .github/workflows/code-formatting.yml

This file was deleted.

0 comments on commit a519250

Please sign in to comment.