Skip to content

Upgrade pyo3 to 0.27.1 and add Python 3.14 support (#3) #3

Upgrade pyo3 to 0.27.1 and add Python 3.14 support (#3)

Upgrade pyo3 to 0.27.1 and add Python 3.14 support (#3) #3

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
paths:
- src/**
- src_rust/**
- tests/**
pull_request:
branches: [ "main" ]
paths:
- src/**
- src_rust/**
- tests/**
schedule:
- cron: "42 19 * * 1"
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ python, rust ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
if: matrix.language == 'rust'
uses: dtolnay/rust-toolchain@stable
- name: Set up Python
if: matrix.language == 'python'
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"