Skip to content

[Refactor]: use variables more #72

[Refactor]: use variables more

[Refactor]: use variables more #72

Workflow file for this run

# mainブランチ以外へのPush時に走る処理
name: push
on:
push:
branches-ignore:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
# 最初にworkflowファイル全体をチェックする
check-workflows:
permissions:
contents: read
uses: ./.github/workflows/check-workflows.yml
# workflowファイル全体のチェックが終わったら、テストを実行する
test-infrastructure:
needs: check-workflows
permissions:
contents: read
secrets: inherit
uses: ./.github/workflows/test.yml
# サーバアプリケーションのビルドとテストを実行する
test-server-app:
needs: check-workflows
permissions:
contents: read
uses: ./.github/workflows/server-app.yml