From 153fc6e735d01cd6d439b6142ffa6224d0c55ea7 Mon Sep 17 00:00:00 2001 From: test Date: Sun, 9 Jul 2023 14:51:29 +0900 Subject: [PATCH 01/28] Create 7.txt --- file/7.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 file/7.txt diff --git a/file/7.txt b/file/7.txt new file mode 100644 index 0000000..c793025 --- /dev/null +++ b/file/7.txt @@ -0,0 +1 @@ +7 \ No newline at end of file From 6f5cc31556dfdc72f906affb4788bf1fed364488 Mon Sep 17 00:00:00 2001 From: test Date: Sun, 9 Jul 2023 15:04:17 +0900 Subject: [PATCH 02/28] Create 8.txt --- file/8.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 file/8.txt diff --git a/file/8.txt b/file/8.txt new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/file/8.txt @@ -0,0 +1 @@ +8 From 1d8dccd4184ac1d186bf382301ec077f8637f3d7 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:03:55 +0900 Subject: [PATCH 03/28] Create main.yml --- .github/workflows/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 83cb6c88154e7321ce3430d6f979ea7f6a0678f2 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:05:39 +0900 Subject: [PATCH 04/28] Create test-github-actions.yml --- .github/workflows/test-github-actions.yml | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/test-github-actions.yml diff --git a/.github/workflows/test-github-actions.yml b/.github/workflows/test-github-actions.yml new file mode 100644 index 0000000..21e0a82 --- /dev/null +++ b/.github/workflows/test-github-actions.yml @@ -0,0 +1,35 @@ +name: learn-github-actions +on: + push: + branches: [ master, dev ] + pull_request: + branches: [ master ] + paths: + - "**.js" + paths-ignore: + - "doc/**" +jobs: + build: + strategy: + matrix: + node-version: [10.x, 12.x] + + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v2 + + - name: My First Step + run: + npm install + npm test + npm build + + - name: Cache yarn dependencies + uses: actions/cache@v1 + id: yarn-cache + with: + path: node_modules + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- From 4553e0d181f12ab0f8c37d10cea41a3beec235b9 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:06:06 +0900 Subject: [PATCH 05/28] Create github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/github-actions-demo.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml new file mode 100644 index 0000000..711d62e --- /dev/null +++ b/.github/workflows/github-actions-demo.yml @@ -0,0 +1,17 @@ +name: GitHub Actions Demo +on: [push] +jobs: + Explore-GitHub-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v2 + - run: echo "πŸ’‘ The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." From d24d7faf722e42bf597400aa1990a39860f48f11 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:12:54 +0900 Subject: [PATCH 06/28] Create python.yml --- .github/workflows/python.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 60fb822fec19ddfe1aa6cc0b0c3f137ec2f62e84 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:15:15 +0900 Subject: [PATCH 07/28] Update python-demo.yml 3.8 --- .github/workflows/github-actions-demo.yml | 31 +++++++++++++---------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 711d62e..6d7b6e8 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -1,17 +1,20 @@ -name: GitHub Actions Demo -on: [push] +name: Python + +on: workflow_dispatch + jobs: - Explore-GitHub-Actions: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + steps: - - run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v2 - - run: echo "πŸ’‘ The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 303a70afc7d286cd7b636e8dc511b7975ee35b7a Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:30:50 +0900 Subject: [PATCH 08/28] Create first.yml --- .github/workflows/first.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/first.yml diff --git a/.github/workflows/first.yml b/.github/workflows/first.yml new file mode 100644 index 0000000..28054f5 --- /dev/null +++ b/.github/workflows/first.yml @@ -0,0 +1 @@ +name: Our First Workflow From 4cdb0a638e99840404fd120c973dc8a532f30474 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:41:44 +0900 Subject: [PATCH 09/28] 3.8 --- Python.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Python.yml diff --git a/Python.yml b/Python.yml new file mode 100644 index 0000000..0c8b212 --- /dev/null +++ b/Python.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" \ No newline at end of file From 560d85492195f7901cea1517c540b20b8d86cc3c Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:42:56 +0900 Subject: [PATCH 10/28] Create set.yml --- .github/workflows/set.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/set.yml diff --git a/.github/workflows/set.yml b/.github/workflows/set.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/set.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 8f392786be0f3b47d602ba52e7d93c9f5511601f Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:45:05 +0900 Subject: [PATCH 11/28] Create github-actions-demo1.yml --- .github/workflows/github-actions-demo1.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/github-actions-demo1.yml diff --git a/.github/workflows/github-actions-demo1.yml b/.github/workflows/github-actions-demo1.yml new file mode 100644 index 0000000..711d62e --- /dev/null +++ b/.github/workflows/github-actions-demo1.yml @@ -0,0 +1,17 @@ +name: GitHub Actions Demo +on: [push] +jobs: + Explore-GitHub-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v2 + - run: echo "πŸ’‘ The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." From e316a4e80363ece06e15c0e3369ffc81e92b5d6b Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:53:38 +0900 Subject: [PATCH 12/28] Create 910.yaml --- .github/workflows/910.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/910.yaml diff --git a/.github/workflows/910.yaml b/.github/workflows/910.yaml new file mode 100644 index 0000000..9fd8a2d --- /dev/null +++ b/.github/workflows/910.yaml @@ -0,0 +1,22 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + + steps: + - uses: actions/checkout@v3 + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Upload Artifacts + uses: actions/upload-Artifact@v3 + with: + name: python${{ matrix.python-verson }}_artifac + + From a07c29dd35e120fe58b5b53d67a52b6228363c24 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:59:09 +0900 Subject: [PATCH 13/28] Delete Python.yml --- Python.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Python.yml diff --git a/Python.yml b/Python.yml deleted file mode 100644 index 0c8b212..0000000 --- a/Python.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" \ No newline at end of file From ca41978b638f0978d824d72d1827a438d5d9ee64 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:59:26 +0900 Subject: [PATCH 14/28] Delete test-github-actions.yml --- .github/workflows/test-github-actions.yml | 35 ----------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/test-github-actions.yml diff --git a/.github/workflows/test-github-actions.yml b/.github/workflows/test-github-actions.yml deleted file mode 100644 index 21e0a82..0000000 --- a/.github/workflows/test-github-actions.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: learn-github-actions -on: - push: - branches: [ master, dev ] - pull_request: - branches: [ master ] - paths: - - "**.js" - paths-ignore: - - "doc/**" -jobs: - build: - strategy: - matrix: - node-version: [10.x, 12.x] - - runs-on: ubuntu-latest - steps: - - name: Checkout source code - uses: actions/checkout@v2 - - - name: My First Step - run: - npm install - npm test - npm build - - - name: Cache yarn dependencies - uses: actions/cache@v1 - id: yarn-cache - with: - path: node_modules - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- From 855d49c7cb6c4891efee60e691ee4976405ec96d Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:59:35 +0900 Subject: [PATCH 15/28] Delete set.yml --- .github/workflows/set.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/set.yml diff --git a/.github/workflows/set.yml b/.github/workflows/set.yml deleted file mode 100644 index 6d7b6e8..0000000 --- a/.github/workflows/set.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From baa10949182a1537e802be2d8c022a8a662b78fc Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:59:44 +0900 Subject: [PATCH 16/28] Delete python.yml --- .github/workflows/python.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml deleted file mode 100644 index 6d7b6e8..0000000 --- a/.github/workflows/python.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From 6380ec017820b67cc3aa1742131b406c1c19803b Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:21 +0900 Subject: [PATCH 17/28] Delete python.yaml --- .github/workflows/python.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/python.yaml diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml deleted file mode 100644 index 2715676..0000000 --- a/.github/workflows/python.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From 5b1718d8ba009f14c627d37c14f7feb9fa2e3de0 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:35 +0900 Subject: [PATCH 18/28] Delete 910.yaml --- .github/workflows/910.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/910.yaml diff --git a/.github/workflows/910.yaml b/.github/workflows/910.yaml deleted file mode 100644 index 9fd8a2d..0000000 --- a/.github/workflows/910.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8", "3.9", "3.10"] - - steps: - - uses: actions/checkout@v3 - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Upload Artifacts - uses: actions/upload-Artifact@v3 - with: - name: python${{ matrix.python-verson }}_artifac - - From bb2b25f6dc8791ba39ea7759a66f69929983da29 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:42 +0900 Subject: [PATCH 19/28] Delete main.yml --- .github/workflows/main.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 6d7b6e8..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From 07cde99df1389e14c7364cb07288b49593635ca8 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:49 +0900 Subject: [PATCH 20/28] Delete gitleaks.yml --- .github/workflows/gitleaks.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .github/workflows/gitleaks.yml diff --git a/.github/workflows/gitleaks.yml b/.github/workflows/gitleaks.yml deleted file mode 100644 index 1d5b89b..0000000 --- a/.github/workflows/gitleaks.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: gitleaks - -on: workflow_dispatch - -jobs: - scan: - name: gitleaks - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: gitleaks/gitleaks-action@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 0f615694def85352139a18bd9da04dc81b1c75b7 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:56 +0900 Subject: [PATCH 21/28] Delete first.yml --- .github/workflows/first.yml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/workflows/first.yml diff --git a/.github/workflows/first.yml b/.github/workflows/first.yml deleted file mode 100644 index 28054f5..0000000 --- a/.github/workflows/first.yml +++ /dev/null @@ -1 +0,0 @@ -name: Our First Workflow From e53534bee89c269635f0a571d4b98dbfe99ffa80 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:02:03 +0900 Subject: [PATCH 22/28] Delete github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/github-actions-demo.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml deleted file mode 100644 index 6d7b6e8..0000000 --- a/.github/workflows/github-actions-demo.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From c1077fe0a77374267e344b32424456d2c5b166b2 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:02:09 +0900 Subject: [PATCH 23/28] Delete github-actions-demo1.yml --- .github/workflows/github-actions-demo1.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/github-actions-demo1.yml diff --git a/.github/workflows/github-actions-demo1.yml b/.github/workflows/github-actions-demo1.yml deleted file mode 100644 index 711d62e..0000000 --- a/.github/workflows/github-actions-demo1.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: GitHub Actions Demo -on: [push] -jobs: - Explore-GitHub-Actions: - runs-on: ubuntu-latest - steps: - - run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v2 - - run: echo "πŸ’‘ The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." From c753eaee13bf166c0cb2a6fc15a42bed5f553998 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:10:39 +0900 Subject: [PATCH 24/28] Create python.yml --- .github/workflows/python.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From e912327346a97b5f858d8737d510aadd1a2ace75 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:14:39 +0900 Subject: [PATCH 25/28] Create Python-test.yml --- .github/workflows/Python-test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/Python-test.yml diff --git a/.github/workflows/Python-test.yml b/.github/workflows/Python-test.yml new file mode 100644 index 0000000..5f0f888 --- /dev/null +++ b/.github/workflows/Python-test.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: +build: + +runs-on: ubuntu-latest +strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + +steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From c7203775b959de6bded79475f050ddcb203d022b Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:16:02 +0900 Subject: [PATCH 26/28] Update Python-test.yml --- .github/workflows/Python-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Python-test.yml b/.github/workflows/Python-test.yml index 5f0f888..0b0814c 100644 --- a/.github/workflows/Python-test.yml +++ b/.github/workflows/Python-test.yml @@ -3,14 +3,14 @@ name: Python on: workflow_dispatch jobs: -build: + build: -runs-on: ubuntu-latest -strategy: - matrix: + runs-on: ubuntu-latest + strategy: + matrix: python-version: ["3.8", "3.9", "3.10"] -steps: + steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 From a953173472ad10fcf11c09b5a824018825cfdf0b Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:18:30 +0900 Subject: [PATCH 27/28] Create python-9-10-test.yml --- .github/workflows/python-9-10-test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/python-9-10-test.yml diff --git a/.github/workflows/python-9-10-test.yml b/.github/workflows/python-9-10-test.yml new file mode 100644 index 0000000..5fe75e9 --- /dev/null +++ b/.github/workflows/python-9-10-test.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From fda0d8b0157aafdffcae0fdeda0300934a58ca5a Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:24:13 +0900 Subject: [PATCH 28/28] Create Final-print-by-version.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Actions을 μ‚¬μš©ν•΄μ„œ 파이썬 3.8 ~ 3.10 버전 λ³„λ‘œ 좜λ ₯ κ²°κ³Όλ₯Ό μ €μž₯ --- .github/workflows/Final-print-by-version.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/Final-print-by-version.yml diff --git a/.github/workflows/Final-print-by-version.yml b/.github/workflows/Final-print-by-version.yml new file mode 100644 index 0000000..5fe75e9 --- /dev/null +++ b/.github/workflows/Final-print-by-version.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)"