Skip to content

Bump actions/checkout from 4.1.1 to 4.1.5 #23

Bump actions/checkout from 4.1.1 to 4.1.5

Bump actions/checkout from 4.1.1 to 4.1.5 #23

Workflow file for this run

# (c) Copyright 2023 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- name: Rust Format
run: cargo fmt --check
- name: Clippy
run: cargo clippy
- name: Test
run: cargo test --verbose