Skip to content

Update dependencies and tooling #187

Update dependencies and tooling

Update dependencies and tooling #187

Workflow file for this run

name: Quality
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
paths-ignore:
- 'docs/**'
- '**.md'
# every Sunday at midnight
schedule:
- cron: '0 0 * * 0'
jobs:
analyze:
name: CodeQL
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: python
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3
slack:
name: Slack
runs-on: ubuntu-latest
needs: [analyze]
steps:
- name: Send Slack message
uses: lazy-actions/[email protected]
if: always()
with:
type: ${{ job.status }}
job_name: ':snake: Quality'
url: ${{ secrets.SLACK_WEBHOOK }}