176 create proper scaffolding for the gui project #302
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: aiken-lang/setup-aiken@v1 | |
with: | |
version: v1.1.17 | |
- run: aiken fmt --check | |
working-directory: seedelf-contracts | |
- run: aiken check -D | |
working-directory: seedelf-contracts | |
- run: aiken build | |
working-directory: seedelf-contracts |