File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ env :
10+ CARGO_TERM_COLOR : always
11+
12+ jobs :
13+ build :
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v3
18+
19+ - name : Install Rust
20+ uses : actions-rs/toolchain@v1
21+ with :
22+ toolchain : stable
23+ profile : minimal
24+ override : true
25+
26+ - name : Build
27+ run : cargo build --verbose
28+
29+ - name : Run tests
30+ run : cargo test --verbose
Original file line number Diff line number Diff line change 1515 A production-ready, multi-protocol web platform built with Rust
1616 <br>
1717 <br>
18+ <a href="https://github.com/your-org/core-web/actions"><img src="https://github.com/your-org/core-web/workflows/CI/badge.svg" alt="CI Status"></a>
1819 <a href="https://crates.io/crates/core-web"><img src="https://img.shields.io/crates/v/core-web.svg" alt="Crates.io"></a>
1920 <a href="https://docs.rs/core-web"><img src="https://docs.rs/core-web/badge.svg" alt="Documentation"></a>
2021 <a href="LICENSE"><img src="https://img.shields.io/crates/l/core-web.svg" alt="License"></a>
You can’t perform that action at this time.
0 commit comments