Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

chore(deps): update actions/checkout digest to 9bb5618 - autoclosed #158

chore(deps): update actions/checkout digest to 9bb5618 - autoclosed

chore(deps): update actions/checkout digest to 9bb5618 - autoclosed #158

Workflow file for this run

name: Rust
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop, master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose