-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from mitsuhiko/remove-travis
Move more to github ci
- Loading branch information
Showing
6 changed files
with
98 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: [staging, trying] | ||
pull_request: | ||
branches: [master] | ||
types: [opened, reopened, synchronize] | ||
jobs: | ||
test: | ||
name: Tests | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: macos-latest | ||
target: x86_64-apple-darwin | ||
rust: 1.40.0 | ||
- os: ubuntu-latest | ||
target: x86_64-unknown-linux-gnu | ||
rust: 1.40.0 | ||
- os: ubuntu-latest | ||
target: i686-unknown-linux-gnu | ||
rust: 1.40.0 | ||
- os: windows-latest | ||
target: i686-pc-windows-msvc | ||
rust: 1.40.0 | ||
- os: windows-latest | ||
target: x86_64-pc-windows-msvc | ||
rust: 1.40.0 | ||
- os: ubuntu-latest | ||
target: x86_64-unknown-linux-gnu | ||
rust: stable | ||
- os: ubuntu-latest | ||
target: x86_64-unknown-linux-gnu | ||
rust: beta | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Install rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: ${{ matrix.rust }} | ||
target: ${{ matrix.target }} | ||
override: true | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Install linker | ||
if: matrix.target == 'i686-unknown-linux-gnu' | ||
run: sudo apt-get install gcc-5-multilib lib32gcc-5-dev | ||
- name: Test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --target ${{ matrix.target }} --lib | ||
nightly: | ||
name: Nightly Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: nightly | ||
override: true | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --lib | ||
lint: | ||
name: Linting (fmt + clippy) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Clippy | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: clippy | ||
args: -- -D warnings | ||
- name: Format check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: -- --check |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -209,6 +209,6 @@ impl<'a> Confirm<'a> { | |
term.show_cursor()?; | ||
term.flush()?; | ||
|
||
return Ok(rv); | ||
Ok(rv) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![allow(clippy::needless_doctest_main)] | ||
|
||
pub mod confirm; | ||
pub mod input; | ||
pub mod multi_select; | ||
|