datadog-cli 0.2.0

A CLI tool for querying Datadog
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: "Setup Rust Environment"

description: "Setup the Rust CI environment for GitHub Action runners"

runs:
  using: composite
  steps:
    - name: Setup Rust toolchain
      uses: dtolnay/rust-toolchain@master
      with:
        toolchain: stable
        targets: x86_64-unknown-linux-gnu,
        components: rustfmt, clippy

    - name: Setup rust cache
      uses: Swatinem/rust-cache@v2