Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use custom runners #1219

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest-8-cores, macos-latest]
go-bin: ['~/go/bin']
include:
- os: windows-latest
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

check_format:
name: check format (ubuntu-latest / nightly)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -85,7 +85,7 @@ jobs:

check_lint:
name: check linter (ubuntu-latest / stable)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -106,7 +106,7 @@ jobs:

check_docs:
name: check docs (ubuntu-latest / stable)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -125,7 +125,7 @@ jobs:

check_licenses:
name: check licenses (ubuntu-latest / stable)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -137,7 +137,7 @@ jobs:

check_msrv:
name: check minimal supported rust version (ubuntu-latest / msrv)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -159,7 +159,7 @@ jobs:

check_examples:
name: check examples (ubuntu-latest / stable)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -180,7 +180,7 @@ jobs:

check_spelling:
name: check spelling (ubuntu-latest / nightly)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -205,7 +205,7 @@ jobs:

check_min_versions:
name: check minimal versions of transitive dependencies (ubuntu-latest / stable)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down