Skip to content

Bump github.com/docker/docker from 20.10.19+incompatible to 24.0.7+incompatible #581

Bump github.com/docker/docker from 20.10.19+incompatible to 24.0.7+incompatible

Bump github.com/docker/docker from 20.10.19+incompatible to 24.0.7+incompatible #581

Workflow file for this run

name: Rust tests
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
rust-test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Setup toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Set up Rust caches
uses: actions/cache@v2
id: rust-cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
orchestrator/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('orchestrator/Cargo.lock') }}
- name: Run Orchestrator unit tests
run: cd orchestrator && cargo test --all --verbose
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v2
with:
profile: minimal
toolchain: stable
override: true
- name: Run Rust fmt
run: cd orchestrator && cargo fmt
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v2
with:
profile: minimal
toolchain: stable
override: true
- name: Run Carglo Clippy
run: cd orchestrator && cargo clippy