blob: 577121e0128f8951034f68dfd6835651be1e07f4 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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: CI
on:
pull_request:
push:
branches:
- master
tags:
- 'v*'
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: "1"
RUSTFLAGS: "-D warnings"
jobs:
CI:
needs:
- license-check
- fmt
- check-and-test
- doc
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
license-check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Check License Header
uses: apache/skywalking-eyes/header/@501a28d2fb4a9b962661987e50cf0219631b32ff
with:
config: .github/licenserc.yaml
- name: Check Dependencies License
uses: apache/skywalking-eyes/dependency/@501a28d2fb4a9b962661987e50cf0219631b32ff
with:
config: .github/licenserc.yaml
fmt:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install Rust toolchain
run: rustup toolchain install nightly-2022-07-30 --component rustfmt
- name: Run format
run: cargo +nightly-2022-07-30 fmt --all -- --check
check-and-test:
strategy:
fail-fast: false
matrix:
features:
- ""
- "--all-features"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler=3.6.1.3-2ubuntu5
- name: Install Rust toolchain
run: rustup toolchain install stable --component clippy
- name: Run check
run: cargo check --workspace --release ${{ matrix.features }}
- name: Run clippy
run: cargo clippy --workspace --release ${{ matrix.features }} -- -D warnings
- name: Run tests
run: cargo test --workspace --release ${{ matrix.features }}
doc:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler=3.6.1.3-2ubuntu5
- name: Install Rust toolchain
run: rustup toolchain install stable
- name: Run docs
run: cargo rustdoc --release -- -D warnings