-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add github CI * Make clippy happy * Make clippy happy * Delete circle CI * Add CI badge * Fmt * Fix tests and warnings * Actually delete lockfile * ignore Cargo.lock
- Loading branch information
Showing
8 changed files
with
66 additions
and
183 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: setup | ||
run: | | ||
rustup install nightly-2020-03-11 | ||
rustup component add rustfmt --toolchain nightly-2020-03-11 | ||
rustup component add clippy --toolchain nightly-2020-03-11 | ||
- name: fmt | ||
run: | | ||
cargo +nightly-2020-03-11 fmt --version | ||
cargo +nightly-2020-03-11 fmt --all -- --check | ||
- name: clippy | ||
run: | | ||
cargo +nightly-2020-03-11 clippy --version | ||
cargo +nightly-2020-03-11 clippy --all -- -D warnings | ||
- name: build | ||
run: | | ||
cargo --version --verbose | ||
cargo build --all | ||
cargo build --all --no-default-features | ||
- name: test | ||
run: | | ||
cargo test --all | ||
- name: test no-std | ||
run: | | ||
cd ./test_suite/derive_tests_no_std | ||
cargo +nightly-2020-03-11 build --no-default-features | ||
|
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 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
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