Skip to content

Bump actions/checkout from 3.6.0 to 4.1.1 #119

Bump actions/checkout from 3.6.0 to 4.1.1

Bump actions/checkout from 3.6.0 to 4.1.1 #119

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@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose