-
Notifications
You must be signed in to change notification settings - Fork 8
78 lines (61 loc) · 2.14 KB
/
contracts.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Based on https://github.com/actions-rs/example/blob/master/.github/workflows/quickstart.yml
on:
push:
branches:
- develop
- main
pull_request:
name: contracts
jobs:
contracts_unit_tests:
name: Contract Unit Testing
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Install Nix
uses: cachix/install-nix-action@29bd9290ef037a3ecbdafe83cbd2185e9dd0fa0a # v20
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: "sandbox = false"
- name: Cache Nix
uses: cachix/cachix-action@v12
with:
name: chainlink-cosmos
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
# TODO: We probably want cachix enabled heres
# https://github.com/smartcontractkit/chainlink-cosmos/issues/15
- name: Run unit tests
run: nix develop -c cargo unit-test --locked
env:
RUST_BACKTRACE: 1
- name: Compile WASM contract
run: nix develop -c cargo wasm --locked
env:
RUSTFLAGS: "-C link-arg=-s"
contracts_lint:
name: Contracts Lint
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Install Nix
uses: cachix/install-nix-action@29bd9290ef037a3ecbdafe83cbd2185e9dd0fa0a # v20
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: "sandbox = false"
- name: Cache Nix
uses: cachix/cachix-action@v12
with:
name: chainlink-cosmos
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Avoid using non-nix rust binaries
run: rm -rf ~/.cargo/bin
- name: Run cargo fmt
run: nix develop -c cargo fmt --all -- --check
- name: Run cargo check
run: nix develop -c cargo check
- name: Run cargo clippy
run: nix develop -c cargo clippy -- -D warnings
# TODO: Add schema checks
# https://github.com/smartcontractkit/chainlink-terra/issues/17