feat: new API #64
Workflow file for this run
This file contains hidden or 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: | |
pull_request: | |
schedule: [cron: "40 1 * * 0"] | |
jobs: | |
test-release-build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- toolchain: "nightly" | |
steps: | |
- name: Setup | Checkout | |
uses: actions/checkout@v2 | |
- name: Setup | Toolchain | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: "${{ matrix.toolchain }}" | |
override: true | |
- name: Build | Release Mode | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release | |
unittest: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- toolchain: "nightly" | |
features: "" | |
steps: | |
- name: Setup | Checkout | |
uses: actions/checkout@v2 | |
- name: Setup | Toolchain | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: "${{ matrix.toolchain }}" | |
override: true | |
- name: Test | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --features "${{ matrix.features }}" | |
env: | |
RUST_LOG: debug | |
RUST_BACKTRACE: full | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/[email protected] | |
with: | |
toolchain: nightly | |
components: rustfmt, clippy | |
- name: Check Apache License Header | |
uses: korandoru/hawkeye@v2 | |
- name: Format | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
- name: clippy | |
shell: bash | |
run: | | |
cargo clippy --no-deps --workspace --all-targets -- -D warnings | |
- name: Build-doc | |
uses: actions-rs/cargo@v1 | |
with: | |
command: doc | |
args: --all --no-deps | |
env: | |
RUSTDOCFLAGS: "-D warnings" | |
# - shell: bash | |
# run: cargo install cargo-audit | |
# - name: Audit dependencies | |
# shell: bash | |
# # if: "!contains(github.event.head_commit.message, 'skip audit')" | |
# run: cargo audit --db ./target/advisory-db |