We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44afacc commit 3ce7f1eCopy full SHA for 3ce7f1e
.github/workflows/rust.yml
@@ -15,15 +15,10 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
19
+ - uses: actions-rust-lang/setup-rust-toolchain@v1
20
- name: Install dependencies
21
run: apt-get update && apt-get install -y llvm-dev libclang-dev clang
- - name: Install ${{ matrix.rust-version }}
22
- uses: actions-rs/toolchain@v1
23
- with:
24
- toolchain: ${{ matrix.rust-version }}-${{ matrix.target.triple }}
25
- profile: minimal
26
- override: true
27
- name: Build
28
run: cargo build --verbose
29
- name: Run tests
@@ -43,9 +38,6 @@ jobs:
43
38
- '5.36'
44
39
- '5.38'
45
40
- '5'
46
- rust-version:
47
- - 1.54.0 # MSRV
48
- - stable
49
41
target:
50
42
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
51
0 commit comments