Rename policies to rules #87
This file contains 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: Continuous Integration | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: [ main ] | |
jobs: | |
CLI: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Build | |
run: go build -o bin/mxlint "./cmd/mxlint" | |
- name: Test | |
run: go test -v ./... | |
- name: Test subcommand export-model | |
run: | | |
bin/mxlint export-model --mode advanced -i resources/app | |
git diff --exit-code modelsource | |
- name: Test subcommand lint | |
run: ./bin/mxlint lint --xunit-report report.xml --rules ./resources/rules |