File tree Expand file tree Collapse file tree 3 files changed +40
-8
lines changed
Expand file tree Collapse file tree 3 files changed +40
-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 : macos-latest
19+ - os : windows-latest
20+ steps :
21+ - uses : actions/checkout@v4
22+ with :
23+ submodules : true
24+ - run : cargo test
25+
26+ msrv :
27+ name : MSRV
28+ runs-on : ubuntu-latest
29+ steps :
30+ - uses : actions/checkout@v4
31+ with :
32+ submodules : true
33+ - run : rustup update 1.60.0 && rustup default 1.60.0
34+ - run : cargo test
35+
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