feat: update kudos #2
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: Test anoma-apps | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: Run test suite | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: Kudos | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: Download latest nightly Juvix binary | |
uses: jaxxstorm/[email protected] | |
with: | |
repo: anoma/juvix-nightly-builds | |
cache: enable | |
- name: Clean | |
run: juvix clean --global && juvix clean && juvix dependencies update | |
- name: Type Check | |
run: juvix typecheck | |
- name: Format Check | |
run: juvix format | |
- name: Run Example | |
run: juvix eval Example.juvix |