Upgraded to latest lucid-evolution version #27
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Aiken | |
run: | | |
curl -sSfL https://install.aiken-lang.org | bash | |
~/.aiken/bin/aikup install v1.0.29-alpha | |
sudo ln -s ~/.aiken/bin/aiken /usr/local/bin/aiken | |
- name: Run tests | |
run: aiken check |