Skip to content

Rust: add a IPC/RPC client manager #1180

Rust: add a IPC/RPC client manager

Rust: add a IPC/RPC client manager #1180

Workflow file for this run

# Copyright 2020-2023 Alibaba Group Holding Limited.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Vineyard Rust CI
on:
# Trigger the workflow on push or pull request, but only for the main branch
push:
branches:
- main
paths:
- 'rust/**'
pull_request:
branches:
- main
paths:
- 'rust/**'
concurrency:
group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
if: ${{ github.repository == 'v6d-io/v6d' }}
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Check
run: |
cd rust
cargo fmt --all -- --check
cargo clippy -- -D warnings
cargo check
- name: Unittest
if: false
run: |
cd rust
cargo test --lib