Skip to content

Bump sqlite-jdbc from 3.36.0.3 to 3.41.2.2 in /archive #190

Bump sqlite-jdbc from 3.36.0.3 to 3.41.2.2 in /archive

Bump sqlite-jdbc from 3.36.0.3 to 3.41.2.2 in /archive #190

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./api/target/site/jacoco/jacoco.xml,./archive/target/site/jacoco/jacoco.xml,./common/target/site/jacoco/jacoco.xml,./operator/target/site/jacoco/jacoco.xml
verbose: true