Support client_secret_jwt & private_key_jwt for token auth (#251) #81
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
on: | |
push: | |
branches: | |
- "main" | |
name: "Main Branch" | |
jobs: | |
detectToolVersions: | |
name: "Detect Tool Versions" | |
uses: ./.github/workflows/part_tool_versioning.yml | |
test: | |
name: "Test" | |
needs: ["detectToolVersions"] | |
uses: ./.github/workflows/part_test.yml | |
with: | |
otpVersion: "${{ needs.detectToolVersions.outputs.otpVersion }}" | |
rebarVersion: "${{ needs.detectToolVersions.outputs.rebarVersion }}" | |
elixirVersion: "${{ needs.detectToolVersions.outputs.elixirVersion }}" | |
docs: | |
name: "Docs" | |
needs: ["detectToolVersions"] | |
uses: ./.github/workflows/part_docs.yml | |
with: | |
otpVersion: "${{ needs.detectToolVersions.outputs.otpVersion }}" | |
rebarVersion: "${{ needs.detectToolVersions.outputs.rebarVersion }}" | |
elixirVersion: "${{ needs.detectToolVersions.outputs.elixirVersion }}" |