Bump faraday from 1.3.0 to 2.9.0 #177
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
--- | |
on: | |
- push | |
jobs: | |
tests_job: | |
runs-on: ubuntu-latest | |
name: Automated Tests | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build Salus | |
run: docker build -t salus-local . | |
- name: Run salus | |
run: docker run --rm -t -v $(pwd):/home/repo salus-local | |
- name: Build Tests | |
run: docker build -f Dockerfile.tests -t salus-tests . | |
- name: Run tests | |
run: docker run salus-tests | |
- name: Run integration | |
run: bin/integration_test |