From 2105c5b196a257987df53c5ab5b2129f28d423ea Mon Sep 17 00:00:00 2001 From: panticmilos Date: Fri, 12 Aug 2022 09:41:24 +0200 Subject: [PATCH] Add architecture e2e --- .github/workflows/versions.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/versions.yml b/.github/workflows/versions.yml index aaa2f41..3c74bd4 100644 --- a/.github/workflows/versions.yml +++ b/.github/workflows/versions.yml @@ -107,3 +107,20 @@ jobs: - name: verify go run: __tests__/verify-go.sh ${{ matrix.go }} shell: bash + + architecture: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + go-version: [1.16, 1.17] + steps: + - uses: actions/checkout@v3 + - name: Setup Go and check latest + uses: ./ + with: + go-version: ${{ matrix.go-version }} + architecture: x64 + - name: Verify Go + run: go version \ No newline at end of file