8000 Add TP10(IT) 1.0 1.2.5 fixture (#1538) · python-kasa/python-kasa@d60dedd · GitHub
[go: up one dir, main page]

Skip to content

Add TP10(IT) 1.0 1.2.5 fixture (#1538) #3798

Add TP10(IT) 1.0 1.2.5 fixture (#1538)

Add TP10(IT) 1.0 1.2.5 fixture (#1538) #3798

name: "CodeQL checks"
on:
push:
branches:
- master
- patch
pull_request:
branches:
- master
- patch
- 'feat/**'
- 'fix/**'
- 'janitor/**'
schedule:
- cron: '44 17 * * 3'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'python' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
0