chore(client): get unique discovery file and update urls #275
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: CI | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- master | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
- name: Setup Python 🐍 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install Poetry | |
uses: snok/install-poetry@5e4414407e59f94f2148bcb253917dfc22dee7d9 | |
with: | |
virtualenvs-in-project: false | |
virtualenvs-path: ~/.cache/poetry/virtualenvs | |
- uses: actions/cache@v1 | |
name: Cache Poetry deps | |
with: | |
path: ~/.cache/pypoetry/virtualenvs | |
key: lint-${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | |
restore-keys: | | |
lint-${{ runner.os }}-poetry- | |
- name: Install Dependencies | |
run: poetry install -v | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: Check the code quality | |
run: POETRY=poetry make check-code-quality | |
- name: Check if the code is correctly typed | |
run: POETRY=poetry make check-types | |
Tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
- name: Setup Python ${{ matrix.python-version }} 🐍 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@5e4414407e59f94f2148bcb253917dfc22dee7d9 | |
with: | |
virtualenvs-in-project: false | |
virtualenvs-path: ~/.cache/poetry/virtualenvs | |
- uses: actions/cache@v1 | |
name: Cache Poetry deps | |
with: | |
path: ~/.cache/pypoetry/virtualenvs | |
key: tests-${{ runner.os }}-${{ matrix.python-version }}-poetry-${{ hashFiles('poetry.lock') }} | |
restore-keys: | | |
tests-${{ runner.os }}-${{ matrix.python-version }}-poetry- | |
- name: Install Dependencies | |
run: poetry install -v | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: Run the test suite | |
run: POETRY=poetry make test | |
- name: Upload coverage to Codecov | |
if: matrix.python-version == 3.8 | |
uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
flags: unittests | |
name: codecov-umbrella | |
yml: codecov.yml | |
fail_ci_if_error: true |