From a65a57f9e2f1b4151af301ff960bc01d29ce9ede Mon Sep 17 00:00:00 2001 From: LamGC Date: Thu, 18 Aug 2022 12:50:49 +0800 Subject: [PATCH] =?UTF-8?q?ci(github-action):=20=E5=87=8F=E5=B0=91?= =?UTF-8?q?=E7=9F=A9=E9=98=B5=E9=87=8F,=20=E4=BB=A5=E5=85=8D=E5=A4=A7?= =?UTF-8?q?=E9=87=8F=E5=8D=A0=E7=94=A8=20Action=20=E8=B5=84=E6=BA=90.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 把 windows 系统移除, 因此只需要检查是否兼容 jvm 版本即可. --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index f2d5366..81b430f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -37,8 +37,8 @@ jobs: continue-on-error: true strategy: matrix: - os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-22.04, ubuntu-latest, windows-2019, windows-2022, windows-latest ] - java-version: [ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ] + os: [ ubuntu-latest ] + java-version: [ 11, 12, 13, 14, 15, 16, 17, 18 ] runs-on: ${{ matrix.os }} steps: