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

fix(deps): cargo update #86

fix(deps): cargo update

fix(deps): cargo update #86

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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose