ci: enhance CI workflows for Python, Rust, and WASM

- Updated Python CI to streamline linting, type checking, and testing processes, including the addition of a wheel build job.
- Refactored Rust CI to utilize pre-built actions for cargo-deny and cargo-audit, improving dependency checks.
- Optimized WASM CI by consolidating build and test steps, and ensuring proper artifact uploads for both Node.js and web packages.
- Added token authentication for GitHub actions in the release workflow to enhance security.
This commit is contained in:
Pratik Bhadane
2026-04-02 16:54:35 +05:30
parent 3e0f289d51
commit 06c536bcb7
4 changed files with 167 additions and 160 deletions
+2
View File
@@ -20,6 +20,7 @@ jobs:
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.GH_PAT }}
- name: Extract version from tag
id: version
@@ -58,3 +59,4 @@ jobs:
body: ${{ steps.changelog.outputs.body }}
draft: false
prerelease: ${{ contains(github.ref_name, '-') }}
token: ${{ secrets.GH_PAT }}