Skip to content

Csrf state code

Csrf state code #130

Workflow file for this run

name: Crystal CI
on: [push, 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
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