Skip to content

Commit

Permalink
use nightly rust in gha
Browse files Browse the repository at this point in the history
  • Loading branch information
beanpuppy committed Jan 9, 2024
1 parent b567746 commit dab2003
Show file tree
Hide file tree
Showing 6 changed files with 302 additions and 372 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/rust.yml
Expand Up @@ -19,7 +19,17 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
default: true

- name: Build
run: cargo build --verbose

- name: Run tests
run: RUST_BACKTRACE=1 cargo test --all-features --verbose
run: cargo test --all-features --verbose

0 comments on commit dab2003

Please sign in to comment.