Skip to content

Bump actions/checkout from 4.1.1 to 4.1.4 #172

Bump actions/checkout from 4.1.1 to 4.1.4

Bump actions/checkout from 4.1.1 to 4.1.4 #172

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose