-
Notifications
You must be signed in to change notification settings - Fork 335
45 lines (42 loc) · 1 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Contract Development
# Pushes to long living branches and all PRs
on:
push:
branches:
- main
- 0.[0-9]+
pull_request:
env:
RUST_BACKTRACE: 1
jobs:
test-hackatom:
name: ${{ matrix.build }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- build: macOS
os: macOS-latest
- build: Windows
os: windows-latest
defaults:
run:
shell: bash
working-directory: ./contracts/hackatom
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.67.0
target: wasm32-unknown-unknown
profile: minimal
override: true
- name: Build hackatom wasm
run: cargo wasm --locked
- name: Unit Test hackatom
run: cargo unit-test --locked
- name: Integration Test hackatom
run: cargo integration-test --locked