RHINENG-1604: return updated system_platform record #3554
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: 🕵️ Test suite | |
on: | |
push: | |
pull_request: | |
types: [ "opened", "synchronize", "reopened" ] | |
jobs: | |
unit_tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run unit tests | |
run: docker-compose -f docker-compose.test.yml up --build --exit-code-from test | |
- uses: codecov/codecov-action@v1 | |
with: | |
files: ./coverage.txt | |
flags: unittests | |
name: codecov-umbrella | |
verbose: true |