From 534542538e0df20366d9760bdf0b39980b566ccd Mon Sep 17 00:00:00 2001 From: Chadha Siala Date: Tue, 30 Jan 2024 17:02:28 -0500 Subject: [PATCH 1/6] deleted workflow --- .github/workflows | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 .github/workflows diff --git a/.github/workflows b/.github/workflows deleted file mode 100644 index e420c7d44d..0000000000 --- a/.github/workflows +++ /dev/null @@ -1,4 +0,0 @@ -- name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From 899c0168190b9b8aa6ce5451ef355063d0422eb2 Mon Sep 17 00:00:00 2001 From: Chadha Siala <80515211+ShathaCodes@users.noreply.github.com> Date: Tue, 30 Jan 2024 17:03:10 -0500 Subject: [PATCH 2/6] Create main.yml --- .github/workflows/main.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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 0000000000..6c67f1a4b3 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +on: + push: + branches: + - develop +jobs: + my-job: + name: My Job + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up JDK 8 for x64 + uses: actions/setup-java@v3 + with: + java-version: '8' + - name: Run the Maven verify phase + run: mvn clean package -DskipTests=true -Dcheckstyle.skip=true + + - name: Cache directory + uses: actions/cache@v3 + with: + path: $HOME/.m2/repository + key: ${{ runner.os }}-cache From 7e04ea9782594f8bb888572c7831f7b40bf7b8d7 Mon Sep 17 00:00:00 2001 From: Chadha Siala <80515211+ShathaCodes@users.noreply.github.com> Date: Tue, 30 Jan 2024 17:05:01 -0500 Subject: [PATCH 3/6] Update main.yml --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6c67f1a4b3..98a47cb475 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,9 +10,9 @@ jobs: - uses: actions/checkout@v4 - name: Set up JDK 8 for x64 - uses: actions/setup-java@v3 + uses: actions/setup-java@v1 with: - java-version: '8' + java-version: 8 - name: Run the Maven verify phase run: mvn clean package -DskipTests=true -Dcheckstyle.skip=true From 55a65c5be84808958c69262f2bbb1c6a753fd2cc Mon Sep 17 00:00:00 2001 From: Chadha Siala <80515211+ShathaCodes@users.noreply.github.com> Date: Tue, 30 Jan 2024 17:24:52 -0500 Subject: [PATCH 4/6] Create test.yml --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000000..15a61d6b6d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: GitHub Actions Demo +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +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@v4 + - 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 dae3786a18679b93cd7cc89ca2ecf43a42430fb7 Mon Sep 17 00:00:00 2001 From: Chadha Siala Date: Tue, 30 Jan 2024 17:37:03 -0500 Subject: [PATCH 5/6] delete dummy project --- .github/workflows/test.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 15a61d6b6d..0000000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: GitHub Actions Demo -run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 -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@v4 - - 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 24e01f59537bac716bee028a51ffafe5b6a05188 Mon Sep 17 00:00:00 2001 From: Chadha Siala <80515211+ShathaCodes@users.noreply.github.com> Date: Tue, 30 Jan 2024 17:47:47 -0500 Subject: [PATCH 6/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f12b6e7cff..253fd74a0f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ #### 微信`Java`开发工具包,支持包括微信支付、开放平台、公众号、企业微信、视频号、小程序等微信功能模块的后端开发。 -
+
特别赞助