From: Thomas Karpiniec Date: Wed, 22 Jan 2020 09:03:28 +0000 (+1100) Subject: Use paste feature in CI X-Git-Tag: v0.2.0~6 X-Git-Url: https://code.octet-stream.net/hashgood/commitdiff_plain/812e65c4bd80677d0f0a8e6dc72fda4b9e64709e?hp=ad5b36540a6d5fc5963885d5ef13c108992e80fe Use paste feature in CI Use Windows to do the build since it doesn't require any special dependencies to build the paste code --- 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