Skip to content

added aabb2

added aabb2 #21

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
default: true
- name: Cargo commands
run: |
cargo build
cargo test
cargo doc