From 98cd98dd4d81c8f765cd7a1262ca15efa9f3f6f8 Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Sat, 28 Sep 2019 22:41:56 -0700 Subject: [PATCH] Install nightly toolchain --- .github/workflows/validate-pr.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate-pr.yaml b/.github/workflows/validate-pr.yaml index 2f9b4fd..94aa147 100644 --- a/.github/workflows/validate-pr.yaml +++ b/.github/workflows/validate-pr.yaml @@ -2,11 +2,15 @@ name: Validate Pull Request on: push jobs: - build: + test: name: Run Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@master + - uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true - uses: actions-rs/cargo@v1 with: command: test