diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bf6a334e..72a0cfe8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,31 +3,6 @@ name: Publish on: [push, pull_request] jobs: - code_style: - name: Check Code Style - - runs-on: ubuntu-latest - steps: - - name: Check out - uses: actions/checkout@v3 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.11" - architecture: x64 - - - name: Download packages - run: | - python3.11 -m pip install --upgrade pip - python3.11 -m pip install -r dev-requirements.txt - - - name: Black - run: python3.11 -m black -l 120 --check --diff foundry scribe smb3parse - - - name: Ruff - run: python3.11 -m ruff check foundry scribe smb3parse - static_analysis: name: Static Analysis