chore: validate all supported goarchs

This commit is contained in:
Jan De Dobbeleer 2021-06-18 07:02:52 +02:00 committed by Jan De Dobbeleer
parent 97a9916be0
commit 90b4996e55
2 changed files with 37 additions and 4 deletions

37
.github/workflows/artifacts.yml vendored Normal file
View file

@ -0,0 +1,37 @@
on:
pull_request:
paths-ignore:
- 'README.md'
- 'CONTRIBUTING.md'
- 'COPYING'
- 'docs/**'
- '.github/*.md'
- '.github/FUNDING.yml'
name: Build Code
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
goarch: [amd64]
include:
- os: ubuntu-latest
goarch: arm
- os: windows-latest
goarch: 386
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ${{ github.workspace }}/src
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build
env:
GOARCH: ${{ matrix.goarch }}

View file

@ -14,10 +14,6 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
defaults:
run: