diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7bc2535..2f750f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,13 +80,21 @@ jobs: job-on-container-test: name: Test on container - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, macos-latest-xlarge] # amd64 and arm64 + runs-on: ${{ matrix.os }} container: image: debian:latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEBUG: true steps: + - name: Show arch + run: | + uname -a + uname -m + - name: Check out source code uses: actions/checkout@v3