aiken is close to ready #101
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: Aiken Check Workflow | |
on: [push] | |
jobs: | |
aiken_check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set execute permission on Aiken | |
run: chmod +x ./.github/aiken | |
- name: Run Aiken Check | |
run: ./.github/aiken check |