There was an error while loading. Please reload this page.
1 parent 38d45cf commit 78994e7Copy full SHA for 78994e7
1 file changed
.github/workflows/ci.yml
@@ -2,10 +2,11 @@
2
# ApexChainx Contracts — CI Pipeline
3
# =============================================================================
4
#
5
-# Triggered on push/PR to main. Essential checks only:
+# Triggered on push/PR to main. Essential checks:
6
# 1. Formatting (rustfmt)
7
# 2. Linting (clippy)
8
-# 3. Tests (cargo test)
+# 3. Build (cargo build)
9
+# 4. Tests (cargo test)
10
11
12
name: CI
@@ -44,5 +45,8 @@ jobs:
44
45
- name: Clippy linting
46
run: cargo clippy --manifest-path apexchainx_calculator/Cargo.toml
47
48
+ - name: Build
49
+ run: cargo build --manifest-path apexchainx_calculator/Cargo.toml
50
+
51
- name: Run tests
52
run: cargo test --manifest-path apexchainx_calculator/Cargo.toml
0 commit comments