Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplify workflow runner
Browse files Browse the repository at this point in the history
milapsheth committed Jul 10, 2024
1 parent ece599a commit c0dbab5
Showing 4 changed files with 4 additions and 20 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build-latest-docker-image.yaml
Original file line number Diff line number Diff line change
@@ -8,11 +8,7 @@ on:

jobs:
build-and-push-latest-docker-image:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout code and submodule
uses: actions/checkout@v4
6 changes: 1 addition & 5 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
@@ -5,11 +5,7 @@ on:

jobs:
format:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
6 changes: 1 addition & 5 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -5,11 +5,7 @@ on:

jobs:
lint:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout code and submodule
uses: actions/checkout@v4
6 changes: 1 addition & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -5,11 +5,7 @@ on:

jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout code and submodule
uses: actions/checkout@v4

0 comments on commit c0dbab5

Please sign in to comment.