aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2020-04-12 17:05:45 +0100
committerEdwin Cheng <[email protected]>2020-04-16 12:28:06 +0100
commitca7dc69a8e87883c6a0c9df88c936fa2a4658c7b (patch)
tree469c4f86a7bb4d21203438cb21a424a4f427fb71 /.github/workflows
parenta4b0ce07f80773146c72004befc77be4e576c677 (diff)
Add tests for proc_macro
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yaml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 00f299ff1..13a11c95b 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -85,6 +85,10 @@ jobs:
85 - name: Compile 85 - name: Compile
86 run: cargo test --no-run 86 run: cargo test --no-run
87 87
88 # We have to build ra_proc_macro_srv first for running related heavy tests
89 - name: Build ra_proc_macro_srv
90 run: cargo build -p ra_proc_macro_srv
91
88 - name: Test 92 - name: Test
89 run: cargo test 93 run: cargo test
90 94