diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml new file mode 100644 index 0000000..d126880 --- /dev/null +++ b/.github/workflows/common.yml @@ -0,0 +1,33 @@ +name: GitHub CI + +on: + workflow_call: + +defaults: + run: + shell: 'bash -Eeuo pipefail -x {0}' + +jobs: + common: + uses: ./.github/workflows/common.yml + + test: + needs: common + strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }} + name: ${{ matrix.name }} + runs-on: ${{ matrix.os }} + environment: publishing + steps: + - uses: actions/checkout@v3 + - name: Prepare Environment + run: ${{ matrix.runs.prepare }} + - name: Pull Dependencies + run: ${{ matrix.runs.pull }} + - name: Build ${{ matrix.name }} + run: ${{ matrix.runs.build }} + - name: History ${{ matrix.name }} + run: ${{ matrix.runs.history }} + - name: Test ${{ matrix.name }} + run: ${{ matrix.runs.test }} + - name: '"docker images"' + run: ${{ matrix.runs.images }} diff --git a/.github/workflows/ci.yml b/.github/workflows/main.yml similarity index 99% rename from .github/workflows/ci.yml rename to .github/workflows/main.yml index 6473df0..672b15d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,6 @@ on: push: branches: - 'main' - pull_request: defaults: run: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000..04b7017 --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,26 @@ +on: + pull_request: + +jobs: + common: + uses: ./.github/workflows/common.yml + + test: + needs: common + strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }} + name: ${{ matrix.name }} + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - name: Prepare Environment + run: ${{ matrix.runs.prepare }} + - name: Pull Dependencies + run: ${{ matrix.runs.pull }} + - name: Build ${{ matrix.name }} + run: ${{ matrix.runs.build }} + - name: History ${{ matrix.name }} + run: ${{ matrix.runs.history }} + - name: Test ${{ matrix.name }} + run: ${{ matrix.runs.test }} + - name: '"docker images"' + run: ${{ matrix.runs.images }}