Skip to content

fedora complains about using /usr/bin/env sh instead of /usr/bin/sh #57

fedora complains about using /usr/bin/env sh instead of /usr/bin/sh

fedora complains about using /usr/bin/env sh instead of /usr/bin/sh #57

Workflow file for this run

name: mypy
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
strategy:
matrix:
version: ["3.10"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
- name: Check types with mypy
run: |
pip install mypy
mypy .