Skip to content

Commit

Permalink
chore: Use larger runners for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bflad committed Dec 3, 2024
1 parent 3e80ac5 commit 5102576
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ permissions:
jobs:
release:
name: Release
runs-on: windows-latest-16-cores
runs-on:
group: windows-latest-large
steps:
- name: Setup environment
run: |-
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
runs-on:
group: "${{ matrix.os }}-large"

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down Expand Up @@ -69,7 +70,6 @@ jobs:
- name: Build
run: go build ./...

- name: ${{ matrix.test-group }}
run: go test -json -v -p 1 ./... | gotestfmt
- run: go test -json -v -p 1 ./... | gotestfmt
env:
SPEAKEASY_API_KEY: ${{ secrets.SPEAKEASY_API_KEY }}

0 comments on commit 5102576

Please sign in to comment.