Skip to content

Commit 919f5c8

Browse files
committed
Use latest rust
1 parent 215e172 commit 919f5c8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,14 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
toolchain:
18+
- stable
1519
steps:
1620
- uses: actions/checkout@v4
21+
- name: Get stable Rust
22+
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
1723
- name: Build
1824
run: cargo build --verbose
1925
- name: Run tests

0 commit comments

Comments
 (0)