Skip to content

#133: don't handle data part on error Status code query results #453

#133: don't handle data part on error Status code query results

#133: don't handle data part on error Status code query results #453

Workflow file for this run

#
# Copyright 2022 ABSA Group Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Build
on:
push:
branches: [master ]
pull_request:
types: [ assigned, opened, synchronize, reopened, labeled ]
jobs:
build-test-and-doc:
name: Build, Test and Doc
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: movies
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
strategy:
fail-fast: false
matrix:
scala: [2.12.17, 2.13.12]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Scala
uses: olafurpg/setup-scala@v14
with:
java-version: "[email protected]"
- name: Build and run unit tests
run: sbt ++${{matrix.scala}} test
- name: Generate documentation
run: sbt ++${{matrix.scala}} doc
- name: Prepare testing database
run: sbt flywayMigrate
- name: Run integration tests
run: sbt ++${{matrix.scala}} testIT