diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 114dd28..1da9be8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,9 +5,9 @@ name: Build on: push: - branches: [ main ] + branches: [ master ] pull_request: - branches: [ main ] + branches: [ master ] env: GHACTIONS: ACTIVE @@ -19,7 +19,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.9, '3.10'] #3.11? # 3.12 doesn't work because oaf aio.http as of 2023-11-05 + python-version: [3.9, '3.10','3.11'] # 3.12 doesn't work because oaf aio.http as of 2023-11-05 steps: - uses: actions/checkout@v3 @@ -31,11 +31,13 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + pip install sphinx + pip install sphinx_rdt_theme - name: install run: | - scripts/install + scripts/doc - name: Run tests run: | - scripts/test + scripts/installAndTest