25 lines
504 B
YAML
25 lines
504 B
YAML
name: Test Suite for K8s Service Interface
|
|
|
|
on:
|
|
- pull_request
|
|
|
|
jobs:
|
|
lint-and-unit-tests:
|
|
name: Lint & Unit tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python: [3.6, 3.7, 3.8, 3.9]
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- name: Install Tox
|
|
run: pip install tox
|
|
- name: Run lint & unit tests
|
|
run: tox
|
|
|