Skip to content

Merge pull request #536 from OP-TED/feature/TED4-162 #2980

Merge pull request #536 from OP-TED/feature/TED4-162

Merge pull request #536 from OP-TED/feature/TED4-162 #2980

Workflow file for this run

name: Tests
on:
push:
branches: [ feature/* , main, hotfix/*, release/* ]
# pull_request:
# branches: [ main, release/* ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: pyTest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
sudo apt-get install -y libssl-dev libcurl4-openssl-dev
python -m pip install --upgrade setuptools pip wheel
make install
make install-dev
- name: Make envfile
uses: SpicyPizza/create-envfile@v1
with:
envkey_VAULT_TOKEN: ${{ secrets.VAULT_TOKEN }}
envkey_VAULT_ADDR: ${{ secrets.VAULT_ADDR }}
- name: Run unit tests
run: make test
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: coverage.xml
# env_vars: OS,PYTHON
# name: codecov-umbrella
# fail_ci_if_error: true