Skip to content

rename resource client to resource manager #114

rename resource client to resource manager

rename resource client to resource manager #114

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Install Surrealdb
run: |
curl -ssf https://install.surrealdb.com | sh
PATH=${_loc}:\$PATH
- name: Build
run: cargo build
- name: Refactor
run: cargo clippy -- -D clippy::all
- name: Format
run: cargo fmt --check
- name: Run tests
run: cargo test