Skip to content

fix: group's "get" function not returning groups (#174) #76

fix: group's "get" function not returning groups (#174)

fix: group's "get" function not returning groups (#174) #76

Workflow file for this run

---
name: CI on Master
on:
push:
branches:
- master
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: run cargo test
run: cargo test --all-features
coverage:
name: Code Coverage
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:0.24.0
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v3
- name: Generate code coverage
run: |
cargo tarpaulin --verbose --timeout 120
- uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
verbose: true