Skip to content

only update the container health status each time at the very beginning of deploy agent starts #151

only update the container health status each time at the very beginning of deploy agent starts

only update the container health status each time at the very beginning of deploy agent starts #151

Workflow file for this run

name: Deploy Agent CI
on:
push:
paths:
'deploy-agent/**'
branches:
- master
pull_request:
paths:
'deploy-agent/**'
branches:
- master
defaults:
run:
shell: bash
working-directory: ./deploy-agent
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Tests
run: |
tox -v