Skip to content

Commit

Permalink
ci(rust): build with nightly toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
fosskers committed Jul 3, 2024
1 parent 9eacd5a commit 363d8bb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
image: ghcr.io/archlinux/archlinux:latest
steps:
- name: Install Rust
run: pacman -Sy rust gcc glibc openssl pkgconf --noconfirm
run: |
pacman -Sy rustup gcc glibc openssl pkgconf --noconfirm
rustup default nightly
- name: Clone Project
uses: actions/checkout@v4
Expand All @@ -36,4 +38,4 @@ jobs:
- name: Build and Test
run: |
cd rust/
cargo test
cargo +nightly test

0 comments on commit 363d8bb

Please sign in to comment.