build docker images from pixi #46
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: Check docker-compose can build containers | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create empty env files | |
run: | | |
touch env.production | |
mkdir -p iam | |
touch iam/wort_s3.env | |
- name: Build the stack | |
run: docker-compose build | |
# TODO: check containers can start | |
#- name: Bring up containers | |
# run: docker-compose up -d web worker |