Skip to content

Enable accessLogs by default and remove debug headers ones #413

Enable accessLogs by default and remove debug headers ones

Enable accessLogs by default and remove debug headers ones #413

Workflow file for this run

name: "Test pull request"
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: "Checking out"
uses: actions/checkout@v3
with:
submodules: 'true'
- name: "Setting up Java"
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '21'
cache: 'maven'
- name: "Build gateway"
run: make install
- name: "Run tests"
run: make test
- name: "Build docker image"
run: make docker
- name: "Remove SNAPSHOT jars from repository"
run: |
find .m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}