File tree Expand file tree Collapse file tree 3 files changed +50
-10
lines changed
Expand file tree Collapse file tree 3 files changed +50
-10
lines changed Original file line number Diff line number Diff line change 2626 name : Test ${{ matrix.toolchain }} on ${{ matrix.os }} (${{ matrix.features }})
2727 runs-on : ${{ matrix.os }}
2828 steps :
29- - uses : actions/checkout@v3
29+ - uses : actions/checkout@v4
3030 - uses : actions-rust-lang/setup-rust-toolchain@v1
3131 with :
3232 toolchain : ${{ matrix.toolchain }}
3333 - run : cargo test --release ${{ matrix.features }}
34- - run : cargo doc --release ${{ matrix.features }}
34+ - run : cargo doc --release ${{ matrix.features }}
35+
36+ MSRV :
37+ strategy :
38+ fail-fast : false
39+ matrix :
40+ os :
41+ - ubuntu-latest
42+ - macos-latest
43+ - windows-latest
44+ toolchain :
45+ - " 1.60"
46+ features :
47+ -
48+ name : Test ${{ matrix.toolchain }} on ${{ matrix.os }} (${{ matrix.features }})
49+ runs-on : ${{ matrix.os }}
50+ steps :
51+ - uses : actions/checkout@v4
52+ - uses : actions-rust-lang/setup-rust-toolchain@v1
53+ with :
54+ toolchain : ${{ matrix.toolchain }}
55+ - run : cargo test --release --lib --bins ${{ matrix.features }}
Original file line number Diff line number Diff line change 99 rustfmt :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v3
12+ - uses : actions/checkout@v4
1313 - uses : actions-rust-lang/setup-rust-toolchain@v1
1414 with :
1515 toolchain : nightly
1919 clippy :
2020 runs-on : ubuntu-latest
2121 steps :
22- - uses : actions/checkout@v3
22+ - uses : actions/checkout@v4
2323 - uses : actions-rust-lang/setup-rust-toolchain@v1
2424 with :
2525 components : clippy
@@ -35,16 +35,35 @@ jobs:
3535 - windows-latest
3636 toolchain :
3737 - 1.56
38- - stable
39- - nightly
4038 features :
4139 -
4240 name : Test ${{ matrix.toolchain }} on ${{ matrix.os }} (${{ matrix.features }})
4341 runs-on : ${{ matrix.os }}
4442 steps :
45- - uses : actions/checkout@v3
43+ - uses : actions/checkout@v4
4644 - uses : actions-rust-lang/setup-rust-toolchain@v1
4745 with :
4846 toolchain : ${{ matrix.toolchain }}
4947 - run : cargo test ${{ matrix.features }}
50- - run : cargo doc ${{ matrix.features }}
48+ - run : cargo doc ${{ matrix.features }}
49+
50+ MSRV :
51+ strategy :
52+ fail-fast : false
53+ matrix :
54+ os :
55+ - ubuntu-latest
56+ - macos-latest
57+ - windows-latest
58+ toolchain :
59+ - " 1.60"
60+ features :
61+ -
62+ name : Test ${{ matrix.toolchain }} on ${{ matrix.os }} (${{ matrix.features }})
63+ runs-on : ${{ matrix.os }}
64+ steps :
65+ - uses : actions/checkout@v4
66+ - uses : actions-rust-lang/setup-rust-toolchain@v1
67+ with :
68+ toolchain : ${{ matrix.toolchain }}
69+ - run : cargo test --lib --bins ${{ matrix.features }}
Original file line number Diff line number Diff line change 11[package ]
22name = " lazy-static-include"
3- version = " 3.2.0 "
3+ version = " 3.2.1 "
44authors = [" Magic Len <len@magiclen.org>" ]
55edition = " 2021"
6- rust-version = " 1.56 "
6+ rust-version = " 1.60 "
77repository = " https://github.com/magiclen/lazy-static-include"
88homepage = " https://magiclen.org/lazy-static-include"
99keywords = [" lazy" , " macro" , " static" , " include" ]
You can’t perform that action at this time.
0 commit comments