Skip to content

Commit

Permalink
[ci] Add supported os architectures to build and test
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
  • Loading branch information
hickeyma committed Apr 4, 2022
1 parent d2e5601 commit eaba443
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ on:

jobs:
setup-environment:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
arch: [i386, amd64, arm64]
name: ${{ matrix.os }} / ${{matrix.arch}}
runs-on: ${{ matrix.os }}, ${{ matrix.arch }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
Expand Down

0 comments on commit eaba443

Please sign in to comment.