update github action #98
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: Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
run_install: false | |
version: "9.1.0" | |
- name: Install dependencies | |
run: pnpm install | |
- uses: aiken-lang/[email protected] | |
with: | |
version: v1.0.26-alpha | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: 1.1.4 # Specify the Bun version (or 'latest') | |
- run: aiken fmt --check | |
- run: aiken check -D | |
- run: aiken build -t verbose | |
- run: bun gen-plutus | |
- run: bun test |