Skip to content

Bump azure-identity from 1.17.1 to 1.18.0 #495

Bump azure-identity from 1.17.1 to 1.18.0

Bump azure-identity from 1.17.1 to 1.18.0 #495

Workflow file for this run

name: test
on:
push:
branches:
- "main"
- "feature/**"
pull_request:
branches:
- "main"
jobs:
test:
strategy:
matrix:
platform:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
python-version:
- "3.10"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Poetry
shell: bash
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Run CI tests
shell: bash
run: |
make ci-test