Skip to content

Update actions/checkout action to v4 #404

Update actions/checkout action to v4

Update actions/checkout action to v4 #404

Workflow file for this run

name: Rust
on:
push:
branches: [ master, 'renovate/**' ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Run Rustfmt
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose