feat: add UserService and GroupService #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |