Skip to content

Update alpine/k8s Docker tag to v1.28.3 #1848

Update alpine/k8s Docker tag to v1.28.3

Update alpine/k8s Docker tag to v1.28.3 #1848

Workflow file for this run

name: Client verify process
on:
pull_request:
jobs:
verify-client:
name: lint, test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Set up tox environment
run: |
pver=${{ matrix.python-version }}
tox_env="-epy${pver/./}"
echo tox_env
echo TOX_ENV=$tox_env >> $GITHUB_ENV
- name: Install tox
run: |
pip install tox
- name: Run styles check
run: tox -elint
- name: Test using tox environment
run: |
tox ${{ env.TOX_ENV }}