diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7b3101e..65b73d27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,24 +11,6 @@ permissions: security-events: write jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-python@v5 - with: - python-version: "3.10" - cache: "pip" - - - name: Install Ruff - run: pip install ruff - - - name: Lint & Format Check - run: | - ruff check . - ruff format --check . - security: runs-on: ubuntu-latest steps: @@ -42,7 +24,6 @@ jobs: test: runs-on: ubuntu-latest - needs: lint steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 909683c9..00000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: CodeQL - -on: - push: - branches: [master, main] - pull_request: - branches: [master, main] - schedule: - - cron: "0 6 * * 1" # Every Monday at 06:00 UTC - -permissions: - contents: read - security-events: write - actions: read - -jobs: - analyze: - name: Analyze (Python) - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - uses: github/codeql-action/init@v3 - with: - languages: python - queries: security-and-quality - - - uses: github/codeql-action/analyze@v3 - with: - category: "/language:python"