Skip to content

Update dependency fastapi to v0.115.5 #60

Update dependency fastapi to v0.115.5

Update dependency fastapi to v0.115.5 #60

Workflow file for this run

name: CI
on:
workflow_dispatch: { }
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: 'pyproject.toml'
- name: Run Tests
run: |
pip install -r requirements.txt
python3 -m venv .venv
source .venv/bin/activate
poetry install --with test
pytest tests
env:
GITHUB_INTEGRATION_TEST_PAT: ${{ secrets.GH_INTEGRATION_TEST_PAT }}
GITHUB_INTEGRATION_TEST_OWNER_REPO_BRANCH: "MShekow/ng-outlook-google-calendar-sync/github-integration-test"