Skip to content

feat: cache S3StreamObject metadata #1185

feat: cache S3StreamObject metadata

feat: cache S3StreamObject metadata #1185

Workflow file for this run

name: Coverage
on:
pull_request:
types: [ opened, reopened, synchronize ]
push:
branches: [ main ]
jobs:
coverage:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install flatc
run: sudo bash install_flatc.sh
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
cache: "maven"
- name: Cache Docker images.
uses: ScribeMD/docker-cache@0.3.6
with:
key: docker-${{ runner.os }}
- name: Test with Maven
run: mvn clean test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true