Skip to content

initial server and application, setup cicd foreach #3

initial server and application, setup cicd foreach

initial server and application, setup cicd foreach #3

Workflow file for this run

name: contract CI
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
name: contract
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Aiken
uses: aiken-lang/setup-aiken@v1
with:
version: v1.1.0
- name: Format Check
working-directory: ./contract
run: aiken fmt --check
- name: Lint and Type Check
working-directory: ./contract
run: aiken check -D
- name: Build contract
working-directory: ./contract
run: aiken build