Skip to content

add protected data to the billing project request #2324

add protected data to the billing project request

add protected data to the billing project request #2324

Workflow file for this run

name: Scala CI
on:
push:
paths-ignore:
- 'README.md'
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# coursier cache action caches both coursier and sbt caches
- name: coursier-cache-action
uses: coursier/cache-action@v6
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 17
- name: Run tests
env:
AGORA_URL_ROOT: http://localhost:8989
RAWLS_URL_ROOT: http://localhost:8990
THURLOE_URL_ROOT: http://localhost:8991
FIRE_CLOUD_ID: 123
run: sbt clean coverage test coverageReport
- uses: codecov/codecov-action@v3
if: ${{ always() }}