Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update readme and dependencies, add Github actions CI #37

Merged
merged 12 commits into from
Mar 4, 2021
Prev Previous commit
Next Next commit
use build instead of test in rust CI
  • Loading branch information
mutlusun committed Mar 4, 2021
commit 3370ccfc61dfbaca44f383492756a8269ce9146b
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@ env:
CARGO_TERM_COLOR: always

jobs:
check_and_test_stable:
build_and_test_stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Check against current compiler
run: cargo check --verbose
- name: Build against current compiler
run: cargo build --verbose
- name: Run tests against current compiler
run: cargo test --verbose
check_and_test_1_41:
build_and_test_1_41:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.41

- name: Check against rust 1.41
run: cargo check --verbose
- name: Build against rust 1.41
run: cargo build --verbose
- name: Run tests against rust 1.41
run: cargo test --verbose