Skip to content

Feature configuration and control for groups #10

Feature configuration and control for groups

Feature configuration and control for groups #10

Workflow file for this run

name: Lint Code & Run Tests
on:
pull_request:
branches:
- dev
workflow_dispatch:
jobs:
check:
name: Check code then run linter and tests
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Lint Code
run: cargo clippy
- name: Run Tests
run: cargo test