Skip to content

Commit

Permalink
Add a mypy check action
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasValvekens committed Aug 19, 2022
1 parent 55c58cf commit febc671
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: MyPy check

on:
push:
branches: [ master, "feature/*", "bugfix/*" ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: jpetrucciani/mypy-check@0.971
with:
path: certomancer
requirements: "types-PyYAML types-python-dateutil types-tzlocal"
requirements_file: "requirements.txt"

0 comments on commit febc671

Please sign in to comment.