Skip to content

Make the issue template work #49

Make the issue template work

Make the issue template work #49

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
if: github.repository == 'lightbend/config'
strategy:
fail-fast: false
matrix:
include:
- java: 8
- java: 11
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build and test
shell: bash
run: sbt -v test doc