diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2821c238..cac69ee6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,17 +6,17 @@ on: branches: [master] jobs: build-msrv: - name: Build on MSRV (1.56) + name: Build on MSRV (1.63) strategy: fail-fast: false matrix: include: - os: ubuntu-latest target: x86_64-unknown-linux-gnu - rust: 1.56.0 + rust: 1.63.0 - os: windows-latest target: i686-pc-windows-msvc - rust: 1.56.0 + rust: 1.63.0 runs-on: ${{ matrix.os }} steps: - name: Install rust @@ -31,7 +31,7 @@ jobs: - name: Copy MSRV Lock run: make msrv-lock - name: Build - env: + env: CARGO_BUILD_TARGET: ${{ matrix.target }} run: make check @@ -46,16 +46,16 @@ jobs: rust: stable - os: ubuntu-latest target: x86_64-unknown-linux-gnu - rust: 1.56.0 + rust: 1.63.0 - os: ubuntu-latest target: i686-unknown-linux-gnu - rust: 1.56.0 + rust: 1.63.0 - os: windows-latest target: i686-pc-windows-msvc - rust: 1.56.0 + rust: 1.63.0 - os: windows-latest target: x86_64-pc-windows-msvc - rust: 1.56.0 + rust: 1.63.0 - os: ubuntu-latest target: x86_64-unknown-linux-gnu rust: stable @@ -81,7 +81,7 @@ jobs: - name: Copy MSRV Lock run: make msrv-lock - name: Test - env: + env: CARGO_BUILD_TARGET: ${{ matrix.target }} run: make test wasm-check: diff --git a/Cargo.toml b/Cargo.toml index 1b3782f3..fed3fa85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://github.com/console-rs/console" repository = "https://github.com/console-rs/console" documentation = "https://docs.rs/console" readme = "README.md" -rust-version = "1.56.0" +rust-version = "1.63" [features] default = ["unicode-width", "ansi-parsing"]