From 24d7877a03c68beea085d2640d501a98213a6087 Mon Sep 17 00:00:00 2001 From: James Nugent Date: Mon, 6 Jul 2020 19:23:47 -0500 Subject: [PATCH] Test with Rust 1.40.0 instead of Rust 1.39.0 The build failures seen in [1] are because of use of `cfg(doctest)` in what appears to be a transitive dependency - `remove_dir_all`, via `rusty-fork`, via `proptest`. `cfg(doctest)` was made stable in Rust 1.40, so this commit bumps the version of Rust against which we test to match that to ensure this is the only failure. [1]: https://github.com/danburkert/prost/pull/326/checks?check_run_id=786898150 --- .github/workflows/continuous-integration-workflow.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration-workflow.yaml b/.github/workflows/continuous-integration-workflow.yaml index 3182d2c3d..31e84b68a 100644 --- a/.github/workflows/continuous-integration-workflow.yaml +++ b/.github/workflows/continuous-integration-workflow.yaml @@ -46,7 +46,7 @@ jobs: matrix: toolchain: - stable - - 1.39.0 + - 1.40.0 os: - ubuntu-latest - macos-latest