From cb2e0d2aef0a87fd5ad7e480eb3eb9c6c4489f57 Mon Sep 17 00:00:00 2001 From: Evgeny Mandrikov Date: Wed, 23 Aug 2023 13:37:39 +0200 Subject: [PATCH] (WIP) --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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 0000000..12f7b6b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +on: + - push + - pull_request +jobs: + test: + strategy: + fail-fast: false + matrix: + include: + - jdk: 17 + - jdk: 21 + name: JDK ${{ matrix.jdk }} + runs-on: ubuntu-latest + steps: + - run: echo OK + # see https://github.com/orgs/community/discussions/4324 + test2: + needs: test + runs-on: ubuntu-latest + steps: + - run: echo OK