mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-22 07:43:39 +01:00
Change MinSRV => Minimum supported Rust version
This commit is contained in:
parent
5a6c65c589
commit
4b65e6e443
8
.github/workflows/CICD.yml
vendored
8
.github/workflows/CICD.yml
vendored
@ -4,20 +4,20 @@ env:
|
||||
PROJECT_NAME: bat
|
||||
PROJECT_DESC: "A `cat` clone with wings"
|
||||
PROJECT_AUTH: "sharkdp"
|
||||
RUST_MIN_SRV: "1.40.0"
|
||||
MIN_SUPPORTED_RUST_VERSION: "1.40.0"
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
min_version:
|
||||
name: MinSRV # Minimum supported rust version
|
||||
name: Minimum supported rust version
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install `rust` toolchain (v${{ env.RUST_MIN_SRV }})
|
||||
- name: Install `rust` toolchain (v${{ env.MIN_SUPPORTED_RUST_VERSION }})
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: ${{ env.RUST_MIN_SRV }}
|
||||
toolchain: ${{ env.MIN_SUPPORTED_RUST_VERSION }}
|
||||
default: true
|
||||
profile: minimal # minimal component installation (ie, no documentation)
|
||||
- name: Test
|
||||
|
Loading…
Reference in New Issue
Block a user