Skip to content

world implementation part1 #190

world implementation part1

world implementation part1 #190

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build with release
run: cargo build --all-features --release --workspace
- name: Run tests
run: cargo test --all-features --release --workspace