Add grep_after, grep_basic and grep_basic_after method to IO parser. #21
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: test | |
on: | |
push: | |
branches: [ master ] | |
tags: [ 'v*.*' ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
java: [8, 11, 13] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
java-package: jdk | |
- uses: r-lib/actions/setup-r@v1 | |
with: | |
r-version: 3.6 | |
- if: matrix.os == 'macos-latest' | |
run: | | |
ln -s /Library/Frameworks/R.framework/Versions/3.6 /Library/Frameworks/R.framework/Versions/3.5 | |
echo "/Library/Frameworks/R.framework/Resources/bin" >> $GITHUB_PATH | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.6 | |
- run: | | |
python -m pip install --upgrade pip | |
pip install py4j==0.10.8.1 | |
pip install numpy | |
- run: | | |
WD=$PWD | |
cd .. | |
git clone https://github.com/Funz/funz-profile | |
cd $WD | |
shell: bash | |
- run: ant -noinput -buildfile build.xml test | |
- run: ant -noinput -buildfile build.xml coverage | |
if: matrix.os == 'ubuntu-latest' | |
- uses: codecov/codecov-action@v1 | |
if: matrix.os == 'ubuntu-latest' |