Skip to content

make Package.all_classifiers unique even if classfiers in pyproje… #47

make Package.all_classifiers unique even if classfiers in pyproje…

make Package.all_classifiers unique even if classfiers in pyproje… #47

Workflow file for this run

name: Integration
on:
pull_request: {}
push:
branches: [main]
jobs:
Tests:
name: ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: "${{ matrix.os }}-latest"
strategy:
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
fail-fast: false
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install --upgrade tox
- name: Execute integration tests
run: tox -e integration