Skip to content

Commit a9a9f3e

Browse files
authored
Merge pull request #32 from alexcrichton/modernize
Add some basic CI and metadata
2 parents 5b4b622 + 87b3910 commit a9a9f3e

File tree

3 files changed

+39
-8
lines changed

3 files changed

+39
-8
lines changed

.github/dependabot.yml

-8
This file was deleted.

.github/workflows/main.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+

Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ description = """
99
Tool for helping to find SSL certificate locations on the system for OpenSSL
1010
"""
1111
readme = "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'

0 commit comments

Comments
 (0)