Skip to content

ws-client: support get-version-whirligig (#3) #14

ws-client: support get-version-whirligig (#3)

ws-client: support get-version-whirligig (#3) #14

Workflow file for this run

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
test:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ["${{ matrix.os }}"]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
./target
key: ${{ matrix.os }}-whirligig-client-${{ hashFiles('rust-toolchain.toml') }}-${{ hashFiles('**/Cargo.lock') }}-0001
restore-keys: |
${{ matrix.os }}-whirligig-client
- name: cargo tree
run: |
cargo tree
git checkout Cargo.lock
cargo tree --frozen --offline
- name: Run fmt
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --all-targets --tests -- -Dwarnings
# - name: Run test
# run: cargo test --all-targets