setup-go/docs/adrs/0001-architecture.md
2022-08-08 12:22:05 +02:00

644 B

Architecture

You can use any of the supported operating systems, and the compatible architecture can be selected using architecture. Values are x86, x64, arm, arm64, amd64 (not all of the architectures are available on all platforms).

jobs:
  build:
    runs-on: ubuntu-latest
    name: Go sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-go@v3
        with:
          go-version: '18'
          architecture: 'amd64' # optional, x64 or x86. If not specified, x64 will be used by default