Skip to content

feat!: redesign parameters to specify APIM instance for import-from-a… #50

feat!: redesign parameters to specify APIM instance for import-from-a…

feat!: redesign parameters to specify APIM instance for import-from-a… #50

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup development environment
run: |
python -m venv .venv
source .venv/bin/activate
python -m pip install -U pip
pip install azdev
azdev setup -r .
azdev extension add apic-extension
- name: Run style check
run: |
source .venv/bin/activate
azdev style apic-extension
- name: Run linter
run: |
source .venv/bin/activate
azdev linter apic-extension
- name: Run tests
run: |
source .venv/bin/activate
azdev test apic-extension