Skip to content

Bump sinatra from 4.0.0 to 4.1.0 #375

Bump sinatra from 4.0.0 to 4.1.0

Bump sinatra from 4.0.0 to 4.1.0 #375

Workflow file for this run

name: Test docker image
on:
# Run tests for any PRs.
pull_request:
jobs:
# Run tests.
# See also https://docs.docker.com/docker-hub/builds/automated-testing/
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Run tests
run: |
if [ -f docker-compose.test.yml ]; then
docker-compose --file docker-compose.test.yml build
docker-compose --file docker-compose.test.yml run sut
else
docker build . --file Dockerfile
fi
- name: Notify slack - test results
uses: voxmedia/github-action-slack-notify-build@v1
if: failure()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
with:
channel: circleci
status: FAILED
color: danger