From: Steve Myers Date: Sun, 21 Feb 2021 02:51:46 +0000 (-0800) Subject: [ci] Manually set rust stable version in CI pipeline X-Git-Tag: v0.2.0~9 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/struct.EncoderStringWriter.html?a=commitdiff_plain;h=1d9f4fbe6c63f20da8b9a90c946425faebffe9ce;p=bdk-cli [ci] Manually set rust stable version in CI pipeline --- diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index d1c5203..3de3efe 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: rust: - - stable + - 1.50.0 # STABLE - 1.45.0 # MSRV features: - default @@ -51,7 +51,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Set default toolchain - run: rustup default stable + run: rustup default 1.50.0 # STABLE - name: Set profile run: rustup set profile minimal - name: Add clippy