docs: add comments #8
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: Test anoma-applib | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Run test suite | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: HelloWorld | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: Download the Juvix binary | |
uses: jaxxstorm/[email protected] | |
with: | |
repo: anoma/juvix | |
cache: enable | |
- name: Clean | |
run: juvix clean --global && juvix dependencies update | |
- name: Type Check | |
run: juvix typecheck | |
- name: Format Check | |
run: juvix format |