mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-08 15:34:46 +08:00
Upd: Simplify GitHub actions
This commit is contained in:
parent
5bcaa63f8f
commit
18c6ac17ae
3 changed files with 61 additions and 0 deletions
22
.github/workflows/master.yml
vendored
22
.github/workflows/master.yml
vendored
|
@ -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:
|
||||
|
|
20
.github/workflows/pull_request.yml
vendored
20
.github/workflows/pull_request.yml
vendored
|
@ -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:
|
||||
|
|
19
.github/workflows/tags.yml
vendored
19
.github/workflows/tags.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue