Skip to content

Commit

Permalink
Update test.yml, temporary comment static_analysis job
Browse files Browse the repository at this point in the history
  • Loading branch information
rjambrecic committed Sep 29, 2023
1 parent 1b42c56 commit d89653e
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d89653e

Please sign in to comment.