Skip to content

Bump the github-action-dependencies group with 2 updates #2348

Bump the github-action-dependencies group with 2 updates

Bump the github-action-dependencies group with 2 updates #2348

Workflow file for this run

---
name: Build And Test CWMS Data API
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build:
name: build and test
runs-on: ubuntu-latest
outputs:
thewar: ${{steps.thebuild.outputs.WARFILE}}
steps:
- name: checkout code
uses: actions/[email protected]
- name: setup java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '8'
cache: 'gradle'
- name: build and test
id: thebuild
run: ./gradlew build --info --init-script init.gradle
- name: integration tests
run: ./gradlew integrationtest --info --init-script init.gradle
- name: Build docker image
run: docker build -t cda:build-latest .
# No upload, we're just verifying that nothing broke the docker image.