File tree Expand file tree Collapse file tree 3 files changed +39
-8
lines changed
Expand file tree Collapse file tree 3 files changed +39
-8
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ pull_request :
4+
5+ defaults :
6+ run :
7+ shell : bash
8+
9+ jobs :
10+ test :
11+ name : Test
12+ runs-on : ${{ matrix.os }}
13+ strategy :
14+ matrix :
15+ include :
16+ - os : ubuntu-latest
17+ - os : macos-latest
18+ - os : windows-latest
19+ steps :
20+ - uses : actions/checkout@v4
21+ with :
22+ submodules : true
23+ - run : cargo test
24+
25+ msrv :
26+ name : MSRV
27+ runs-on : ubuntu-latest
28+ steps :
29+ - uses : actions/checkout@v4
30+ with :
31+ submodules : true
32+ - run : rustup update 1.60.0 && rustup default 1.60.0
33+ - run : cargo test
34+
Original file line number Diff line number Diff line change @@ -9,3 +9,8 @@ description = """
99Tool for helping to find SSL certificate locations on the system for OpenSSL
1010"""
1111readme = " README.md"
12+ edition = ' 2021'
13+
14+ # This was arbitrarily chosen on 2025-01-23 as "pretty old" as previously
15+ # key didn't exist in `Cargo.toml` prior to that.
16+ rust-version = ' 1.60.0'
You can’t perform that action at this time.
0 commit comments