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

Update README.md

Update README.md #73

Workflow file for this run

name: Rust
on:
push:
branches: [trunk]
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4.0.0
with:
path: ./target
key: rust-build
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose