diff options
author | Sam Scott <sam@osohq.com> | 2020-12-17 21:47:25 -0500 |
---|---|---|
committer | Sam Scott <sam@osohq.com> | 2020-12-17 21:47:25 -0500 |
commit | 78ab95911e478ffef3d36e8cbb5402e92b5d16f0 (patch) | |
tree | cc4d1ebd2f54f7ccc62600ad629fac190a12e5b3 | |
parent | c4521ee33bb6f8cad575c4b656bbfc72cc89bbec (diff) |
Add MSRV to CI.
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6429ef..c681bb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,11 @@ jobs: lint: name: Run lint checks runs-on: ubuntu-latest + strategy: + matrix: + rust: + - stable + - 1.37.0 steps: - uses: actions/checkout@v2 - name: Install Rust stable toolchain @@ -29,6 +34,11 @@ jobs: test: name: Run tests runs-on: ubuntu-latest + strategy: + matrix: + rust: + - stable + - 1.37.0 steps: - uses: actions/checkout@v2 - uses: actions/cache@v2 |