feat: In-memory provider for e2e testing and minimal usage #1898
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR | |
on: | |
pull_request: | |
branches: [ master, main ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# TODO: this can be removed with https://github.com/open-feature/java-sdk/issues/523 | |
services: | |
flagd: | |
image: ghcr.io/open-feature/flagd-testbed:latest | |
ports: | |
- 8013:8013 | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@b943a4ed876ec91f6d0cde2181d88d24e8e348de | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
cache: maven | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@1f63aba6538de592cd34d1d957c965c1167673c2 | |
with: | |
languages: java | |
- name: Cache local Maven repository | |
uses: actions/cache@67b839edb68371cc5014f6cea11c9aa77238de78 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Verify with Maven | |
run: mvn --batch-mode --update-snapshots --activate-profiles e2e-test verify | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@e1dd05cde2ed37d100f658b34ea423728ba1812e | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
flags: unittests # optional | |
name: coverage # optional | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@1f63aba6538de592cd34d1d957c965c1167673c2 |