Skip to content

updates to latest zipkin-reporter and armeria #72

updates to latest zipkin-reporter and armeria

updates to latest zipkin-reporter and armeria #72

# yamllint --format github .github/workflows/test.yml
---
name: test webmvc25-jetty
on:
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
# documentation-only commits because GH actions does not permit paths and paths-ignore.
pull_request:
branches: master
paths:
- "build-bin/**"
- "docker/**"
- "webmvc25-jetty/**"
- ".github/workflows/test-webmvc25-jetty.yaml"
- "parent-pom.xml"
jobs:
test:
runs-on: ubuntu-22.04 # newest available distribution, aka jellyfish
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ./m2repository # Shared with the Docker build context via .dockerignore
key: ${{ runner.os }}-webmvc25-jetty-maven-${{ hashFiles('parent-pom.xml', 'webmvc25-jetty/pom.xml') }}
restore-keys: ${{ runner.os }}-webmvc25-jetty-maven-
# Don't attempt to cache Docker. Sensitive information can be stolen
# via forks, and login session ends up in ~/.docker. This is ok because
# we publish DOCKER_PARENT_IMAGE to ghcr.io, hence local to the runner.
- name: Test webmvc25-jetty
run: |
build-bin/configure_test webmvc25-jetty &&
build-bin/test webmvc25-jetty