Skip to content

Commit

Permalink
Merge pull request #32 from alexcrichton/modernize
Browse files Browse the repository at this point in the history
Add some basic CI and metadata
  • Loading branch information
alexcrichton authored Jan 23, 2025
2 parents 5b4b622 + 87b3910 commit a9a9f3e
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/dependabot.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI
on:
pull_request:

defaults:
run:
shell: bash

jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: cargo test

msrv:
name: MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: rustup update 1.60.0 && rustup default 1.60.0
- run: cargo test

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ description = """
Tool for helping to find SSL certificate locations on the system for OpenSSL
"""
readme = "README.md"
edition = '2021'

# This was arbitrarily chosen on 2025-01-23 as "pretty old" as previously
# key didn't exist in `Cargo.toml` prior to that.
rust-version = '1.60.0'

0 comments on commit a9a9f3e

Please sign in to comment.