Skip to content

Commit

Permalink
Use self-hosted CI runners
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Jan 4, 2024
1 parent 04fbb82 commit 268e9c1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ jobs:

test:
name: Tests
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

steps:
- uses: actions/checkout@v3
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:

test:
name: Tests
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 268e9c1

Please sign in to comment.