diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4364655..9206c01 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,26 +2,26 @@ name: Tests on: [workflow_dispatch, pull_request, push] jobs: - static_analysis: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: 3.8 - - name: Install Dependencies and library - shell: bash - run: | - set -ux - python -m pip install --upgrade pip - pip install -e ".[static-analysis]" - - name: Run mypy - shell: bash - run: mypy app + # static_analysis: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - uses: actions/setup-python@v4 + # with: + # python-version: 3.8 + # - name: Install Dependencies and library + # shell: bash + # run: | + # set -ux + # python -m pip install --upgrade pip + # pip install -e ".[static-analysis]" + # - name: Run mypy + # shell: bash + # run: mypy app - - name: Run bandit - shell: bash - run: bandit -c pyproject.toml -r app + # - name: Run bandit + # shell: bash + # run: bandit -c pyproject.toml -r app test: runs-on: ubuntu-latest