add support for federation 2.9 and 2.10 #79
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: Federation Specification Compatibility Test | |
on: | |
pull_request: | |
branches: | |
- series/2.x | |
paths: | |
- apollo-compatibility/** | |
- federation/** | |
- adapters/quick/** | |
jobs: | |
compatibility: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
cache: 'sbt' | |
- name: Cache scala dependencies | |
uses: coursier/cache-action@v6 | |
- name: Run assembly | |
run: sbt "apolloCompatibility/assembly" | |
- name: Compatibility Test | |
uses: apollographql/federation-subgraph-compatibility@v2 | |
with: | |
compose: 'apollo-compatibility/docker-compose.yaml' | |
schema: 'apollo-compatibility/products.graphql' | |
path: '/graphql' | |
port: 4001 | |
debug: true | |
# Boolean flag to indicate whether any failing test should fail the script | |
failOnWarning: false | |
# Boolean flag to indicate whether any required test should fail the script | |
failOnRequired: false | |
# Working directory to run the test from | |
workingDirectory: '' |