Remove DS_Store files. #132
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: Docker Build | |
on: | |
push: | |
branches: [ "mainline" ] | |
pull_request: | |
branches: [ "mainline" ] | |
jobs: | |
docker-build: | |
name: Docker build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ "ubuntu-20.04" ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Setup Docker | |
uses: docker-practice/actions-setup-docker@master | |
timeout-minutes: 10 | |
- name: Start Containers | |
run: docker-compose up --detach --build | |
timeout-minutes: 15 | |
- name: Stop Containers | |
run: docker-compose down | |
timeout-minutes: 2 |