From ce9d8acb5dee54de1a54b9b74214b2053180a9df Mon Sep 17 00:00:00 2001 From: Moreno Feltscher Date: Wed, 24 Jul 2024 00:41:06 +0200 Subject: [PATCH] cleanup --- .github/workflows/test.yml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f899209..52e8675 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,28 +15,36 @@ jobs: fail-fast: false matrix: platform: - - target: aarch64-apple-darwin + - name: aarch64-apple-darwin + target: aarch64-apple-darwin runner: macos-latest - cross: true - - target: aarch64-unknown-linux-gnu + cross: false + - name: aarch64-unknown-linux-gnu + target: aarch64-unknown-linux-gnu runner: ubuntu-latest cross: true - - target: aarch64-unknown-linux-musl + - name: aarch64-unknown-linux-musl + target: aarch64-unknown-linux-musl runner: ubuntu-latest cross: true - - target: i686-unknown-linux-gnu + - name: i686-unknown-linux-gnu + target: i686-unknown-linux-gnu runner: ubuntu-latest cross: true - - target: i686-unknown-linux-musl + - name: i686-unknown-linux-musl + target: i686-unknown-linux-musl runner: ubuntu-latest cross: true - - target: x86_64-apple-darwin + - name: x86_64-apple-darwin + target: x86_64-apple-darwin runner: macos-latest cross: false - - target: x86_64-unknown-linux-gnu + - name: x86_64-unknown-linux-gnu + target: x86_64-unknown-linux-gnu runner: ubuntu-latest cross: false - - target: x86_64-unknown-linux-musl + - name: x86_64-unknown-linux-musl + target: x86_64-unknown-linux-musl runner: ubuntu-latest cross: false