Skip to content

Start workflow for cep-85 #18

Start workflow for cep-85

Start workflow for cep-85 #18

Workflow file for this run

name: ci-cep-85
on:
push:
branches:
- 'dev'
- 'feat-*'
- 'release-*'
pull_request:
branches:
- 'dev'
- 'feat-*'
- 'release-*'
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: rustfmt, clippy
target: wasm32-unknown-unknown
- name: Install dependencies
run: sudo apt update && sudo apt install -y build-essential wabt
- name: Setup
run: make prepare
- name: Run clippy and fmt
run: make check-lint
- name: Run tests
run: make test