Skip to content

adding groups scheme #11

adding groups scheme

adding groups scheme #11

Workflow file for this run

name: Test CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Format
run: cargo fmt --all -- --check
- name: Run tests (no async)
run: cargo test --verbose --features pkgs
- name: Run tests (async)
run: cargo test --verbose --features pkgs,async