Tobias Pfandzelter

Results 2 comments of Tobias Pfandzelter

Great idea! Why did you decide to use libc6-compat and an alpine image rather than using FROM scratch and compiling with static linking? Also, doesn't "make" compile all binaries while...

I was able to fix this by using `path: "*.py"` like so: ```yaml jobs: python: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: MyPy Check uses: jpetrucciani/mypy-check@master with: path: "*.py"...