including the xlmns in Issuer and NameID works with Azure SLO #188
Workflow file for this run
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: Linters | |
on: | |
push: | |
pull_request: | |
jobs: | |
Check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/setup | |
with: | |
cache-key: "check" | |
- run: clojure -M:check | |
Eastwood: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/setup | |
with: | |
cache-key: "eastwood" | |
- run: clojure -X:dev:eastwood | |
Namespace-Declarations: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/setup | |
with: | |
cache-key: "namespace-declarations" | |
- run: clojure -X:dev:namespace-checker | |
Reflection-Warnings: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/setup | |
with: | |
cache-key: "reflection-warnings" | |
- run: ./check-for-reflection-warnings.sh | |
Whitespace: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/setup | |
with: | |
cache-key: "whitespace" | |
- run: clojure -T:whitespace-linter lint | |
Kondo: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/setup | |
with: | |
cache-key: "kondo" | |
- run: clojure -M:kondo |