Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Run dedicated integration tests with a range of Java versions (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi authored Mar 23, 2020
1 parent 55ce17a commit 9dc354d
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,8 @@ on:
- 'releases/*'
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, macOS-latest, windows-latest]
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -32,8 +29,27 @@ jobs:

- name: yarn test
run: yarn test
- name: Smoke Test
integration-tests:
name: Integration Tests
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, macOS-latest, windows-latest]
java-version: [8, 9, 10, 11, 12, 13, 14]
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x

- name: yarn install
run: yarn install

- name: Install Java ${{ matrix.java-version}}
uses: ./
with:
java-version: 11
java-version: ${{ matrix.java-version }}
- run: java -version

0 comments on commit 9dc354d

Please sign in to comment.