chore: prep crate release code and remove comments from cargo.toml file #156
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: 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.9 | |
- run: aiken fmt --check | |
working-directory: seedelf-contracts | |
- run: aiken check -D | |
working-directory: seedelf-contracts | |
- run: aiken build | |
working-directory: seedelf-contracts |