From 4c6655f68cc6121c3a45d6efea8ac60c8e02bc9a Mon Sep 17 00:00:00 2001 From: Tamo Date: Thu, 1 Jul 2021 11:25:33 +0200 Subject: [PATCH 1/2] ci: enable tests on windows --- .github/workflows/rust.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5a8403d6d..6e3d939e2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-18.04, macos-latest] + os: [ubuntu-18.04, macos-latest, windows-latest] steps: - uses: actions/checkout@v2 - name: Run cargo check without any default features @@ -33,22 +33,6 @@ jobs: command: test args: --locked --release - # We don't run test on Windows since we get the following error: There is not enough space on the disk. - check-on-windows: - name: Cargo check on Windows - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - name: Run cargo check without any default features - uses: actions-rs/cargo@v1 - with: - command: check - args: --no-default-features - - name: Run cargo check with all default features - uses: actions-rs/cargo@v1 - with: - command: check - clippy: name: Run Clippy runs-on: ubuntu-18.04 From cb71b714d71b025f0b08b9408191c22cb6700798 Mon Sep 17 00:00:00 2001 From: Tamo Date: Thu, 1 Jul 2021 14:43:10 +0200 Subject: [PATCH 2/2] fix bors --- bors.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bors.toml b/bors.toml index e19665bab..d85949f13 100644 --- a/bors.toml +++ b/bors.toml @@ -1,7 +1,7 @@ status = [ 'Tests on ubuntu-18.04', 'Tests on macos-latest', - 'Tests on windows-latest ', + 'Tests on windows-latest', 'Run Clippy', 'Run Rustfmt' ]