Skip to content

Feature configuration and control for groups #9

Feature configuration and control for groups

Feature configuration and control for groups #9

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: self-hosted
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Lint Code
run: cargo clippy
- name: Run Tests
run: cargo test
- name: Cleanup
if: always()
run: cargo clean