Replace oauth2client with google-auth and google-auth-oauthlib in google-calendar integration #784
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
static-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: tools/provision --force | |
- name: Running Test-Suite | |
run: | | |
source zulip-api-py3-venv/bin/activate | |
tools/lint --skip=gitlint | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: python tools/provision --force | |
- if: runner.os == 'Linux' | |
name: Running Test-Suite on Linux | |
run: | | |
source zulip-api-py3-venv/bin/activate | |
pytest --cov --cov-config=tools/.coveragerc --cov-report=xml | |
- if: runner.os == 'Windows' | |
name: Running Test-Suite on Windows | |
run: | | |
zulip-api-py3-venv\Scripts\Activate.ps1 | |
pytest --cov --cov-config=tools\.coveragerc --cov-report=xml | |
- uses: codecov/codecov-action@v4 | |
with: | |
files: coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} |