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 061759c commit dc39e50
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ on: [push]

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

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ on: pull_request_target

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

steps:
- uses: actions/checkout@v3
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 dc39e50

Please sign in to comment.