From: Michal Migurski Date: Sun, 20 Dec 2020 17:50:41 +0000 (-0800) Subject: Added minimal Docker workflow to test Github Actions X-Git-Tag: live~1701^2~9 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/810a941e81aa53147da9e653d248f8cf2c5ef787 Added minimal Docker workflow to test Github Actions --- diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 000000000..23d9c6e01 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,19 @@ +name: Docker +on: + - push + - pull_request +jobs: + test: + name: Docker + runs-on: ubuntu-20.04 + steps: + - name: Checkout source + uses: actions/checkout@v1 + - name: Poke config + run: | + cp config/example.storage.yml config/storage.yml + cp config/docker.database.yml config/database.yml + touch config/settings.local.yml + - name: Docker Build + run: | + docker-compose build