Bump sphinx-rtd-theme from 1.3.0 to 2.0.0 #138
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: Build and test ADK | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
test: | |
name: Build and test Python 🐍 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -e .[dev] --upgrade | |
- name: Test with unittest | |
run: | | |
coverage run | |
coverage report | |
- name: Static code analysis | |
run: MYPYPATH=./src mypy --strict --ignore-missing-imports -p adk | |
- name: Run pylint | |
run: pylint ./src/ |