Bump org.xerial.snappy:snappy-java from 1.1.10.1 to 1.1.10.4 #79
Workflow file for this run
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: Maven build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: Build artifacts, javadocs, and site | |
run: | | |
mvn install -B -V | |
mvn javadoc:jar | |
mvn javadoc:test-aggregate | |
mvn site | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
verbose: true |