File tree Expand file tree Collapse file tree 5 files changed +42
-55
lines changed Expand file tree Collapse file tree 5 files changed +42
-55
lines changed Original file line number Diff line number Diff line change 1+ on : [push, pull_request]
2+ name : Continuous Integration
3+
4+ jobs :
5+ # check if the project builds with MSRV, stable and nighly
6+ build :
7+ name : Build
8+ runs-on : ubuntu-latest
9+ strategy :
10+ matrix :
11+ rust_version : [1.36.0, stable, nightly]
12+ steps :
13+ - name : Checkout repository
14+ uses : actions/checkout@v2
15+ - name : Install Rust
16+ uses : actions-rs/toolchain@v1
17+ with :
18+ toolchain : ${{ matrix.rust_version }}
19+ profile : minimal
20+ override : true
21+ - uses : actions-rs/cargo@v1
22+ with :
23+ command : test
24+ use-cross : true
25+
26+ test :
27+ name : Test Suite
28+ runs-on : ubuntu-latest
29+ steps :
30+ - name : Checkout repository
31+ uses : actions/checkout@v2
32+ - name : Install Rust
33+ uses : actions-rs/toolchain@v1
34+ with :
35+ toolchain : stable
36+ profile : minimal
37+ override : true
38+ - uses : actions-rs/cargo@v1
39+ with :
40+ command : test
41+ use-cross : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11[ ![ crates.io] ( https://img.shields.io/crates/d/svd-parser.svg )] ( https://crates.io/crates/svd-parser )
22[ ![ crates.io] ( https://img.shields.io/crates/v/svd-parser.svg )] ( https://crates.io/crates/svd-parser )
3- [ ![ Build Status ] ( https://travis-ci.org /rust-embedded/svd.svg?branch=master )] ( https://travis-ci.org /rust-embedded/svd )
3+ [ ![ Continuous Integration ] ( https://github.com /rust-embedded/svd/workflows/Continuous%20Integration/badge .svg )] ( https://github.com /rust-embedded/svd/actions )
44[ ![ Documentation] ( https://docs.rs/svd-parser/badge.svg )] ( https://docs.rs/svd-parser )
55
66# ` svd-parser `
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments