From c4fdedcefde759419339fc40bd82d7bf6ccd7b4b Mon Sep 17 00:00:00 2001 From: danielsanchezq Date: Tue, 27 Sep 2022 17:25:44 +0200 Subject: [PATCH] Fix toolchain matrix --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 95b7386..cb3f848 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,11 +44,11 @@ jobs: matrix: include: - os: ubuntu-latest - target: x86_64-unknown-linux-gnu + toolchain: stable-x86_64-unknown-linux-gnu - os: windows-latest - target: x86_64-pc-windows-gnu + toolchain: stable-x86_64-pc-windows-gnu - os: macos-latest - target: x86_64-apple-darwin + toolchain: stable-x86_64-apple-darwin runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3