Skip to content

Merge pull request #49 from guardian/update/aws #45

Merge pull request #49 from guardian/update/aws

Merge pull request #49 from guardian/update/aws #45

Workflow file for this run

# Find full documentation here https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
name: CI
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
# See https://github.com/actions/setup-java
- name: Setup Java 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'corretto'
cache: 'sbt'
- name: Build
run: |
sbt clean compile test