-
Notifications
You must be signed in to change notification settings - Fork 22
64 lines (57 loc) · 1.34 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Origami CI
on: [push, pull_request]
env:
DOJO_VERSION: v0.3.14
SCARB_VERSION: v2.3.1
jobs:
check:
runs-on: ubuntu-latest
name: Check format
steps:
- uses: actions/checkout@v4
- uses: software-mansion/setup-scarb@v1
with:
scarb-version: ${{ env.SCARB_VERSION }}
- name: Format
run: scarb fmt --check
shell: bash
build:
needs: check
runs-on: ubuntu-latest
name: Build package
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Build
run: sozo build
shell: bash
origami:
needs: [check, build]
runs-on: ubuntu-latest
name: Test crates
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Test
run: sozo test -f origami
shell: bash
market:
needs: [check, build]
runs-on: ubuntu-latest
name: Test example market
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Test
run: sozo test -f market
shell: bash
projectile:
needs: [check, build]
runs-on: ubuntu-latest
name: Test example projectile
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Test
run: sozo test -f projectile
shell: bash