action: using self hosted runner

Signed-off-by: Alexis Pentori <alexis@status.im>
This commit is contained in:
Alexis Pentori 2024-12-02 10:16:25 +01:00
parent c95fff8ac3
commit c6b3e2d1a7
No known key found for this signature in database
GPG Key ID: 65250D2801E47A10
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ on:
jobs:
linters:
timeout-minutes: 10
runs-on: ubuntu-latest
runs-on: ['self-hosted', 'ubuntu-22.04']
steps:
- uses: actions/checkout@v4
@ -30,4 +30,4 @@ jobs:
run: pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files
run: pre-commit run --all-files

View File

@ -35,7 +35,7 @@ jobs:
tests:
name: tests
runs-on: ubuntu-latest
runs-on: ['self-hosted', 'ubuntu-22.04']
timeout-minutes: 120
steps: