Merge pull request #93 from sebastian-alfers/akka-example #4
This file contains hidden or 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: Akka CI | |
on: | |
push: | |
paths: | |
- .github/workflows/akka.yaml | |
- akka/** | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/workflows/akka.yaml | |
- akka/** | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: akka | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Compose | |
uses: ./.github/actions/setup-compose | |
- name: Build Docker images | |
run: docker compose build |