File tree Expand file tree Collapse file tree 4 files changed +17
-48
lines changed Expand file tree Collapse file tree 4 files changed +17
-48
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on : [push, pull_request]
3
+
4
+ jobs :
5
+ test :
6
+ name : Test
7
+ runs-on : ubuntu-latest
8
+ strategy :
9
+ matrix :
10
+ rust : [stable, beta, nightly]
11
+ steps :
12
+ - uses : actions/checkout@master
13
+ - name : Install Rust
14
+ run : rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
15
+ - run : cargo test
16
+ - run : cargo doc
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
4
4
A Rust library for option parsing for CLI utilities.
5
5
6
- [ ![ Build Status] ( https://travis-ci.org/rust-lang-nursery/getopts.svg?branch=master )] ( https://travis-ci.org/rust-lang-nursery/getopts )
7
-
8
- [ Documentation] ( https://doc.rust-lang.org/getopts )
6
+ [ Documentation] ( https://docs.rs/getopts )
9
7
10
8
## Usage
11
9
@@ -16,12 +14,6 @@ Add this to your `Cargo.toml`:
16
14
getopts = " 0.2"
17
15
```
18
16
19
- and this to your crate root:
20
-
21
- ``` rust
22
- extern crate getopts;
23
- ```
24
-
25
17
## Rust Version Support
26
18
27
19
The minimum supported Rust version is 1.18.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments