-
Notifications
You must be signed in to change notification settings - Fork 8
80 lines (63 loc) · 2.3 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
79
80
# 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Install Nix
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: "sandbox = false"
- name: Cache Nix
uses: cachix/cachix-action@18cf96c7c98e048e10a83abd92116114cd8504be # v14
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:
# TODO: reenable linting once we've updated contract syntax
if: false
name: Contracts Lint
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Install Nix
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: "sandbox = false"
- name: Cache Nix
uses: cachix/cachix-action@18cf96c7c98e048e10a83abd92116114cd8504be # v14
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