-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (46 loc) · 1.08 KB
/
rust.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
name: CI
on:
push:
branches:
- master
- develop
pull_request:
jobs:
fmt:
name: Formatting
runs-on: github-hosted-heavy-runner
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy
runs-on: github-hosted-heavy-runner
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets -- -D warnings
test:
name: Tests
runs-on: github-hosted-heavy-runner
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Build Smart Contract
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target wasm32-unknown-unknown
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all-targets