Skip to content

Fix "setup Connected Services Error" due to latest API Changes #595

Fix "setup Connected Services Error" due to latest API Changes

Fix "setup Connected Services Error" due to latest API Changes #595

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build package
on:
push:
branches:
- master
- "v0.7"
pull_request:
branches:
- master
- "v0.7"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: 1.5.1
- name: Install dependencies
run: poetry install
- name: Test package building
run: |
poetry build