Skip to content

Commit

Permalink
actions-based CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jswrenn committed Dec 8, 2020
1 parent 9958c45 commit 8c1d55a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on: [push, pull_request]

jobs:
msrv:
name: Rust MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@1.36.0
- run: cargo check --no-default-features
- run: cargo check --no-default-features --features "use_alloc"
- run: cargo check

stable:
name: Rust Stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --no-default-features
- run: cargo check --no-default-features --features "use_alloc"
- run: cargo test

0 comments on commit 8c1d55a

Please sign in to comment.