Skip to content

Commit

Permalink
[chore] try using actuated to build
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme committed Feb 15, 2024
1 parent cc88aee commit 1bade7e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-and-test.yml
Expand Up @@ -137,8 +137,9 @@ jobs:
unittest-matrix:
strategy:
matrix:
runner: [ubuntu-latest, actuated-arm64-8cpu-16gb]
go-version: ["~1.22", "~1.21.5"] # 1.20 needs quotes otherwise it's interpreted as 1.2
runs-on: ubuntu-latest
runs-on: ${{ matrix.runner }}
needs: [setup-environment]
steps:
- name: Checkout Repo
Expand All @@ -162,7 +163,8 @@ jobs:
path: ~/.cache/go-build
key: unittest-${{ runner.os }}-go-build-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
- name: Run Unit Tests
run: make gotest
run: |
make -j8 gotest
unittest:
if: always()
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1bade7e

Please sign in to comment.