Start multiple docker containers #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PullRequest Validation | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
format: | |
name: Scala Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v13 | |
with: | |
java-version: [email protected] | |
- name: Scala Caching | |
uses: coursier/cache-action@v5 | |
- name: Scalafmt | |
run: sbt scalafmtCheckAll | |
test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v13 | |
with: | |
java-version: [email protected] | |
- name: Scala Caching | |
uses: coursier/cache-action@v5 | |
- name: Build & Test | |
run: sbt test |