Skip to content

feat: add UserService and GroupService #12

feat: add UserService and GroupService

feat: add UserService and GroupService #12

Workflow file for this run

name: Feature Matrix
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Regenerate FEATURES.md
run: go run ./cmd/featurematrix -o FEATURES.md
- name: Check for diff
run: |
if ! git diff --exit-code FEATURES.md; then
echo "::error::FEATURES.md is out of date. Run 'go run ./cmd/featurematrix -o FEATURES.md' and commit the result."
exit 1
fi