From 827d5d201c8ab90dda5171319790773be7543240 Mon Sep 17 00:00:00 2001 From: Arnaud Gourlay Date: Fri, 6 Dec 2024 20:42:32 +0100 Subject: [PATCH] Run tests against all plateform --- .github/workflows/ci.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3351bd8..def24c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,22 @@ env: jobs: build: name: Rust CI - runs-on: ubuntu-latest + strategy: + matrix: + include: + - target: x86_64-unknown-linux-gnu + os: ubuntu-latest + - target: aarch64-unknown-linux-gnu + os: ubuntu-latest + - target: x86_64-pc-windows-msvc + os: windows-latest + - target: aarch64-pc-windows-msvc + os: windows-latest + - target: x86_64-apple-darwin + os: macos-latest + - target: aarch64-apple-darwin + os: macos-latest + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - name: Install Rust stable