Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Fix CI (#32)
Browse files Browse the repository at this point in the history
* Fix CI to run.
* Test on arm instead of x86.
* Use arm64 instead of arm.
  • Loading branch information
adlerjohn authored Apr 6, 2021
1 parent c616a41 commit d739e45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Tests

on:
pull_request:
push:
Expand All @@ -12,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
goarch: ["arm", "amd64"]
goarch: ["arm64", "amd64"]
timeout-minutes: 5
steps:
- uses: actions/setup-go@v2
Expand All @@ -35,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
goarch: ["386", "amd64"] # test 32 and 64 bit architectures
goarch: ["arm64", "amd64"]
steps:
- uses: actions/setup-go@v2
with:
Expand All @@ -47,7 +48,6 @@ jobs:
**/**.go
go.mod
go.sum
if: env.GIT_DIFF
- name: Set up Go
uses: actions/setup-go@v2
with:
Expand Down

0 comments on commit d739e45

Please sign in to comment.