Skip to content

Commit

Permalink
Add msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis committed Nov 12, 2023
1 parent c166081 commit 2f6cd28
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,26 @@ jobs:
- name: Regenerate and check
run: ./regenerate_fonts_file.sh --check

msrv:
name: Minimum Supported Rust Version
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install cargo-msrv
uses: taiki-e/install-action@v2
with:
tool: [email protected]

#- uses: Swatinem/rust-cache@v1

- name: Check MSRV
run: cargo msrv
#run: cargo msrv verify

release:
name: Publish version
runs-on: ubuntu-latest
Expand All @@ -232,7 +252,8 @@ jobs:
lints,
docs,
leaks,
check_fonts
check_fonts,
msrv
]
steps:
- name: Checkout sources
Expand Down

0 comments on commit 2f6cd28

Please sign in to comment.