Update dependency julia to v0.6.2 #34
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 Image CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the docker-compose stack | |
run: docker-compose -f docker/docker-compose.yml up --build --force-recreate | |
- name: Check if container is running | |
run: /bin/bash -c "[[ $(docker ps -qf "name=docker_python-pddl") != "" ]] && echo "Ok" || exit 1" | |