From af58b2e406f9aa2f925b7904278d0d7992aef1be Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 18 Jan 2025 08:41:12 +0100 Subject: [PATCH] Run unit test GitHub Action on an ARM processor Projects are speeding up GitHub Actions by running them on an ARM processor. https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 51c68feb3..a8ffcd135 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,7 @@ jobs: name: Unit tests strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest, macos-13] + os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest, macos-13] go: ['1.22', '1.23'] runs-on: ${{ matrix.os }} steps: