MIN-1647: Require Project's Owner verification when Create new LBE #242
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: aiken-lang/[email protected] | |
with: | |
version: v1.0.26-alpha | |
name: Set up aiken | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: 1.1.4 | |
name: Set up bun | |
- name: Install dependencies | |
run: bun install | |
- run: aiken fmt --check && bun format --check | |
name: Run format | |
- run: aiken check -D | |
name: Run onchain tests | |
- run: aiken build && bun gen-plutus | |
name: Set up offchain tests | |
- run: bun test | |
name: Run offchain tests |