Adding upstream version 1.27.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
69f0f331c6
commit
5e6d9cc7a9
15 changed files with 248 additions and 118 deletions
19
.github/workflows/ci.yml
vendored
19
.github/workflows/ci.yml
vendored
|
@ -10,28 +10,31 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
python-version: [
|
||||
'3.7',
|
||||
'3.8',
|
||||
'3.9',
|
||||
'3.10',
|
||||
'3.11',
|
||||
'3.12',
|
||||
]
|
||||
include:
|
||||
- python-version: '3.7'
|
||||
os: ubuntu-18.04 # MySQL 5.7.32
|
||||
- python-version: '3.8'
|
||||
os: ubuntu-18.04 # MySQL 5.7.32
|
||||
os: ubuntu-20.04 # MySQL 8.0.36
|
||||
- python-version: '3.9'
|
||||
os: ubuntu-20.04 # MySQL 8.0.22
|
||||
os: ubuntu-20.04 # MySQL 8.0.36
|
||||
- python-version: '3.10'
|
||||
os: ubuntu-22.04 # MySQL 8.0.28
|
||||
os: ubuntu-22.04 # MySQL 8.0.36
|
||||
- python-version: '3.11'
|
||||
os: ubuntu-22.04 # MySQL 8.0.36
|
||||
- python-version: '3.12'
|
||||
os: ubuntu-22.04 # MySQL 8.0.36
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
|
|
41
.github/workflows/codeql.yml
vendored
41
.github/workflows/codeql.yml
vendored
|
@ -1,41 +0,0 @@
|
|||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: "12 18 * * 1"
|
||||
|
||||
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
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
queries: +security-and-quality
|
||||
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v2
|
||||
with:
|
||||
category: "/language:${{ matrix.language }}"
|
Loading…
Add table
Add a link
Reference in a new issue