From: Elias Rohrer Date: Tue, 18 Oct 2022 16:49:46 +0000 (+0200) Subject: Add CI jobs for `windows-latest` and `macos-latest` X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-sample;a=commitdiff_plain;h=e20eeb03fbd3d91aa313fe9e1bd2218be0e70acb Add CI jobs for `windows-latest` and `macos-latest` --- 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