fixed e-sim and added random char selection for . metacharacter #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# test against latest update of each LTS Java version: | |
java: [ 8, 11, 17 ] | |
# test against major operating systems | |
os: [ubuntu-20.04, windows-latest, macos-latest] | |
name: Java ${{ matrix.java }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B clean package |