Enhance ID token with client ID and owner details #2
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: Crystal CI Pull Request | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: crystallang/crystal | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: shards install | |
- name: Run Code Format | |
run: crystal tool format --check | |
- name: Run Ameba Checks | |
run: bin/ameba | |
- name: Run Authorization Service | |
run: crystal ./spec/support/test_server.cr & | |
- name: Run Grants | |
run: crystal spec spec/grants/*_spec.cr | |
- name: Run Authly | |
run: crystal spec spec/*_spec.cr |