Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

fix: update readme to reflect deprecation #29

fix: update readme to reflect deprecation

fix: update readme to reflect deprecation #29

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-elixir@v1.7
with:
otp-version: '22.2'
elixir-version: '1.11'
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build Docker image
run: |
cd test/db
docker-compose down
docker-compose up -d
- name: Sleep for 5 seconds
uses: jakejarvis/wait-action@master
with:
time: "5s"
- run: mix deps.get
- run: mix test