Skip to content

Commit

Permalink
Upd: Simplify GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bokysan committed Apr 13, 2022
1 parent 5bcaa63 commit 18c6ac1
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,36 @@ jobs:
Unit_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0


- uses: ./.github/actions/unit-tests

Integration_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0


- uses: ./.github/actions/integration-tests

Helm_chart_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: ./.github/actions/helm-chart-tests

Build_Alpine:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,34 @@ jobs:
Unit_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: ./.github/actions/unit-tests

Integration_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: ./.github/actions/integration-tests

Helm_chart_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: ./.github/actions/helm-chart-tests

Build_Alpine:
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,33 @@ jobs:
Unit_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: ./.github/actions/unit-tests

Integration_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: ./.github/actions/integration-tests
Helm_chart_Tests:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: ./.github/actions/helm-chart-tests

Build_Alpine:
Expand Down

0 comments on commit 18c6ac1

Please sign in to comment.