Skip to content

Commit d68bdd3

Browse files
authored
chore(ci): update GitHub Actions runner to self-hosted (#556)
* chore(ci): update GitHub Actions runner to self-hosted for improved disk space * chore(ci): update Python version specification in GitHub Actions workflow to '3.12.x'
1 parent 7accfef commit d68bdd3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ jobs:
5656

5757
test:
5858
name: Run Tests
59-
runs-on: ubuntu-latest
59+
runs-on: [self-hosted, linux, amd64]
60+
# self-hosted runner provides enough disk space for the full test suite
6061
steps:
6162
- name: Check out code
6263
uses: actions/checkout@v6
@@ -68,7 +69,7 @@ jobs:
6869
- name: Set up Python
6970
uses: actions/setup-python@v6
7071
with:
71-
python-version: '3.12'
72+
python-version: '3.12.x'
7273
cache: pip
7374

7475
- name: Install dependencies

0 commit comments

Comments
 (0)