diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad9a68c..4ba8366 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,16 +4,17 @@ on: [push,pull_request] jobs: test: name: "Test images" - runs-on: "ubuntu-latest" strategy: fail-fast: false matrix: + runner: [ubuntu-latest, ubuntu-24.04-arm] go-version: ["1.19.x"] target: - os: linux - os: windows ext: .exe - os: android + runner: ubuntu-latest args: -app-id calc.sha${{ github.sha }} - os: web - os: freebsd @@ -22,6 +23,8 @@ jobs: # - os: freebsd # arch: -arm64 + runs-on: ${{ matrix.runner }} + steps: - name: Setup Go environment uses: actions/setup-go@v3