From 812e65c4bd80677d0f0a8e6dc72fda4b9e64709e Mon Sep 17 00:00:00 2001 From: Thomas Karpiniec Date: Wed, 22 Jan 2020 20:03:28 +1100 Subject: [PATCH 1/1] Use paste feature in CI Use Windows to do the build since it doesn't require any special dependencies to build the paste code --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fec17ad..e34b8e1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -5,11 +5,11 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@v1 - name: Build - run: cargo build --verbose + run: cargo build --features paste --verbose - name: Run tests - run: cargo test --verbose + run: cargo test --features paste --verbose -- 2.39.5