Skip to content

Bump sphinx-rtd-theme from 1.3.0 to 2.0.0 #138

Bump sphinx-rtd-theme from 1.3.0 to 2.0.0

Bump sphinx-rtd-theme from 1.3.0 to 2.0.0 #138

Workflow file for this run

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/