Skip to content

Universe can be queried while immutable #71

Universe can be queried while immutable

Universe can be queried while immutable #71

Workflow file for this run

name: Build and test
# This workflow is triggered on pushes to the repository.
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check documentation
run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --workspace --document-private-items --examples --bins --lib
- name: Check formatting
run: cargo fmt --check