Skip to content

Commit

Permalink
cargo update, commit lockfile (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
evq authored Nov 1, 2021
1 parent bd9e518 commit c5d6d74
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 14 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "CI Nightly"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Build & Test
run: cargo build --features nightly && cargo test --features nightly
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,5 @@ jobs:
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install dependencies
run: cargo install --force cargo-audit cbindgen
- name: Build & Test
run: cargo build && cargo test
run: cargo build && cargo test
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c5d6d74

Please sign in to comment.