Skip to content

Commit

Permalink
Use project runners also on push and release
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Jan 4, 2024
1 parent 529209f commit 885967d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:

integration:
name: Integration 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 All @@ -68,7 +70,9 @@ jobs:

benchmark:
name: Benchmark
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 885967d

Please sign in to comment.