From e20eeb03fbd3d91aa313fe9e1bd2218be0e70acb Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Tue, 18 Oct 2022 18:49:46 +0200 Subject: [PATCH] Add CI jobs for `windows-latest` and `macos-latest` --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1a70ea0..2ad6ccd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,11 +6,12 @@ jobs: build: strategy: matrix: + platform: [ ubuntu-latest, macos-latest, windows-latest ] toolchain: [ stable, beta ] include: - toolchain: stable check-fmt: true - runs-on: ubuntu-latest + runs-on: ${{ matrix.platform }} steps: - name: Checkout source code uses: actions/checkout@v2 -- 2.30.2