Skip to content

Commit

Permalink
Fix/workflow (#954)
Browse files Browse the repository at this point in the history
* adding runner disk cleanup to workflow

* update runner OS version

* another try

* Chnage runner os for all jobs

* use self-hosted runner

* remove unnesseary job
  • Loading branch information
ehsanhajian committed Jun 22, 2023
1 parent 5187393 commit c429e2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

fmt:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout the source code
uses: actions/checkout@v3
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
clippy:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout the source code
uses: actions/checkout@v3
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

check-license:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout the source code
uses: actions/checkout@v3
Expand Down

0 comments on commit c429e2d

Please sign in to comment.