Skip to content

feat: add methods for run-time access #16

feat: add methods for run-time access

feat: add methods for run-time access #16

Workflow file for this run

name: Rust CI
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Formatting & Lints
run: cargo fmt -- --check && cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose