Skip to content

Bump azure-storage-queue from 12.9.0 to 12.12.0 #227

Bump azure-storage-queue from 12.9.0 to 12.12.0

Bump azure-storage-queue from 12.9.0 to 12.12.0 #227

Workflow file for this run

name: test
on:
push:
branches:
- "main"
- "feature/**"
pull_request:
branches:
- "main"
jobs:
test:
strategy:
matrix:
platform:
- "ubuntu-latest"
python-version:
- "3.10"
runs-on: ${{ matrix.platform }}
timeout-minutes: 5
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