Skip to content
This repository was archived by the owner on Jul 23, 2026. It is now read-only.

Deprecate repo

Deprecate repo #30

Workflow file for this run

# (c) Copyright 2024 Hewlett Packard Enterprise Development LP
name: Rust Checks
on:
pull_request:
jobs:
build:
name: Rust Checks
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
#TODO fix formatting in a separate pr after moving to actions
# - name: Rust Format
# run: cargo fmt --check
- name: Clippy
run: cargo clippy
- name: Test
run: cargo test --verbose