jpetrucciani / mypy-check

github action for python's mypy type checker tool
MIT License
33 stars 14 forks source link

Error building the docker image #17

Closed t4n1o closed 2 years ago

t4n1o commented 2 years ago
jobs:
  mypy:
    runs-on: ubuntu-latest

    steps:
      - uses: jpetrucciani/mypy-check@master
        with:
          mypy_flags: '--namespace-packages --config-file=setup.cfg'

Am I doing something wrong here? Ubuntu latest but the workflow fails with the msg:

Step 6/7 : RUN apk add bash gcc musl-dev &&     pip install --upgrade pip &&     pip install -r requirements.txt
   ---> Running in 29ef0e2b0d9e
  /bin/sh: 1: apk: not found
  The command '/bin/sh -c apk add bash gcc musl-dev &&     pip install --upgrade pip &&     pip install -r requirements.txt' returned a non-zero code: 127
jpetrucciani commented 2 years ago

ah 🤦‍♂️ that's my fault - let me push a fix quickly

t4n1o commented 2 years ago

Thanks it's fixed