From b70a93a2a56efe9ab3f4d6ab61223ca5837479bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A4=EC=83=81=EB=AF=BC=2C=20Simon?= Date: Thu, 7 Nov 2024 17:59:47 +0900 Subject: [PATCH] Update basic.yml --- .github/workflows/basic.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 01502b1..79e4d7e 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -1,36 +1,27 @@ -# This is a basic workflow to help you get started with Actions - name: CI -# Controls when the workflow will run on: - # Triggers the workflow on push or pull request events but only for the "main" branch push: branches: [ "main" ] pull_request: branches: [ "main" ] - # Allows you to run this workflow manually from the Actions tab workflow_dispatch: -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" build: - # The type of runner that the job will run on runs-on: ubuntu-latest - # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - # Runs a single command using the runners shell - name: Run a one-line script run: echo Hello, world! - # Runs a set of commands using the runners shell - name: Run a multi-line script run: | echo Add other actions to build, echo test, and deploy your project. + + call-sub: + uses: ./.github/workflows/sub/sub1.yml