Skip to content

Bump h2 from 2.0.206 to 2.2.220 #59

Bump h2 from 2.0.206 to 2.2.220

Bump h2 from 2.0.206 to 2.2.220 #59

Workflow file for this run

# Workflow executed on "push" events.
name: push
on: push
jobs:
# Run tests in Maven.
test:
runs-on: ubuntu-latest
container:
image: maven:3.6-alpine
steps:
# Retrieve the code from Github.
# Use branch "v2" of the "checkout" plugin
- uses: actions/checkout@v2
- name: Execute tests with Maven.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B --settings settings.xml clean test