Update Rust crate thiserror to v1.0.63 (#477) #1585
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: { } | |
workflow_dispatch: { } | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
build: | |
name: 'build' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/cleanup | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- uses: ./.github/actions/setup-rust | |
- uses: ./.github/actions/setup-python | |
- name: Rust Build | |
run: cargo build --all-features --all-targets | |
- name: Python Lint - Format | |
run: rye run ruff format --check . | |
- name: Python Lint - Ruff | |
run: rye run ruff . | |
- name: Rust Lint - Format | |
run: cargo fmt --all --check | |
- name: Rust Lint - Clippy | |
run: cargo clippy --all-features --all-targets | |
- name: Docs | |
run: cargo doc --no-deps | |
- name: Rust Test | |
run: cargo test --workspace --all-features | |
- name: Pytest - PyVortex | |
run: rye run pytest --benchmark-disable test/ | |
working-directory: pyvortex/ |