feat: link in markup #545
Workflow file for this run
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: Python application | |
on: push | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Setup dependencies | |
uses: ExpressApp/github-actions-poetry@v0.3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
poetry-version: "1.3.2" | |
- name: Run tests | |
env: | |
BOT_CREDENTIALS: ${{ secrets.END_TO_END_TESTS_BOT_CREDENTIALS }} | |
run: | | |
poetry run ./scripts/test --cov-report=xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
fail_ci_if_error: true | |
files: ./coverage.xml | |
flags: unittests | |
token: ${{ secrets.CODECOV_TOKEN }} | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Setup dependencies | |
uses: ExpressApp/github-actions-poetry@v0.3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
poetry-version: "1.3.2" | |
- name: Run linters | |
run: | | |
poetry run ./scripts/lint | |
docs-lint: | |
name: Docs lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Setup dependencies | |
uses: ExpressApp/github-actions-poetry@v0.3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
poetry-version: "1.3.2" | |
- name: Run linters | |
run: | | |
poetry run ./scripts/docs-lint |