This repository was archived by the owner on Oct 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
125 lines (106 loc) · 3.12 KB
/
Copy pathtest.yml
File metadata and controls
125 lines (106 loc) · 3.12 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: Test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Cache dependencies
uses: actions/cache/restore@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: clippy, rustfmt
# This runs the pre-commit hooks defined in .pre-commit-config.yaml
# TODO: figure out how to update to use pre-commit.ci
- uses: pre-commit/action@v3.0.1
clippy_linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Cache dependencies
uses: actions/cache/restore@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run Clippy linting
run: ./scripts/clippy.sh
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run formatting check
run: ./scripts/fmt.sh
check_wasm_exports:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Check WASM contract exports
run: ./scripts/check-wasm-exports.sh
# Note: This job should not be "required" for PRs, as during development there may be temporary
# discrepancies between craft and rippled
host_function_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run host function audit
run: ./scripts/host-function-audit.sh
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run build and test
run: ./scripts/build-and-test.sh
run-markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run code in Markdown files
run: ./scripts/run-markdown.sh
e2e-tests:
runs-on: ubuntu-latest
# needs: build_and_test
steps:
- uses: actions/checkout@v5
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run end-to-end tests
run: ./scripts/e2e-tests.sh