Update initialization parameters in Authly module and authorization h… #160
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: Crystal CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: crystallang/crystal | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Install system dependencies | |
| run: | | |
| apt-get update | |
| apt-get install -y libreadline-dev libevent-dev libssl-dev libxml2-dev libyaml-dev libgmp-dev | |
| - name: Install dependencies | |
| run: shards install | |
| - name: Run Code Format | |
| run: crystal tool format ./src ./spec --check | |
| - name: Run Ameba Checks | |
| run: bin/ameba ./src ./spec | |
| - 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 | |
| release: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build | |
| if: ${{ success() }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Compute Release Version | |
| id: semver | |
| uses: paulhatch/[email protected] | |
| with: | |
| tag_prefix: "v" | |
| major_pattern: "(MAJOR)" | |
| minor_pattern: "(MINOR)" | |
| # A string to determine the format of the version output | |
| format: "${major}.${minor}.${patch}" | |
| # If this is set to true, *every* commit will be treated as a new version. | |
| bump_each_commit: false | |
| - name: Bump Shard Version | |
| id: bump-shard | |
| uses: fjogeleit/yaml-update-action@master | |
| with: | |
| valueFile: shard.yml | |
| propertyPath: version | |
| value: ${{steps.semver.outputs.version}} | |
| commitChange: true | |
| updateFile: true | |
| targetBranch: master | |
| masterBranchName: master | |
| createPR: false | |
| branch: master | |
| message: Set shard version ${{ steps.semver.outputs.version }} | |
| - name: Create Release | |
| id: create_release | |
| uses: actions/create-release@latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{steps.semver.outputs.version_tag}} | |
| release_name: Release v${{steps.semver.outputs.version}} | |
| draft: false | |
| prerelease: true |