Skip to content

Commit 1a76935

Browse files
committed
chore: add MSRV
1 parent 191c934 commit 1a76935

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,15 @@ jobs:
3434
run: cargo test --all-features
3535
env:
3636
RUSTDOCFLAGS: --cfg docsrs
37+
msrv:
38+
name: MSRV
39+
runs-on: ubuntu-latest
40+
steps:
41+
- uses: actions/checkout@v3
42+
- name: Install MSRV
43+
uses: dtolnay/rust-toolchain@master
44+
with:
45+
toolchain: "1.89"
46+
components: rustfmt, clippy
47+
- name: Check MSRV compatibility
48+
run: cargo check --all-features

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ license = "LGPL-2.1-or-later"
66
description = "A reimplementation of Creator (https://creatorsim.github.io/)'s compiler"
77
categories = ["command-line-utilities", "compilers"]
88
keywords = ["compiler", "assembly", "assembler", "Creator"]
9+
rust-version = "1.89"
910

1011
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1112

0 commit comments

Comments
 (0)