Skip to content

Commit

Permalink
Merge pull request #65 from logicalmechanism/logicalmechanism-patch-2
Browse files Browse the repository at this point in the history
Create aiken_check.yml
  • Loading branch information
logicalmechanism authored Jan 24, 2024
2 parents e4e027c + 098e2cc commit 32efe75
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/aiken_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Aiken Check Workflow

on: [push]

jobs:
aiken_check:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Install Aiken from GitHub Source
run: cargo install --git https://github.com/aiken-lang/aiken.git

- name: Run Aiken Check
run: aiken check

0 comments on commit 32efe75

Please sign in to comment.