summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorcyqsimon <28627918+cyqsimon@users.noreply.github.com>2023-08-27 22:08:18 +0800
committercyqsimon <28627918+cyqsimon@users.noreply.github.com>2023-08-30 11:09:29 +0800
commita8cdf18c9c875a872bdc90df89077124825d2d1d (patch)
tree20c4af38712a5d95c41280174d205d963d193d15 /.github
parent9338067b0bcdb082bc846c65c531930c02d596ea (diff)
Test MSRV
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 77ddfa6..785799e 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -15,7 +15,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
- rust: [stable, nightly]
+ rust:
+ - 1.65.0 # MSRV
+ - stable
+ - nightly
steps:
- name: Checkout repository
uses: actions/checkout@v3