/
niceSOFT
/
python3-wheel
Обзор
Документация
Войти
/
niceSOFT
/
python3-wheel
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.34.2
.github/workflows/codeqa-test-tag.yml
61 строка
2 KB
Alex Grönholm
Fixed installation from sdist (#334)
27 янв 2020, 23:11
Не верифицирован
27 янв 2020, 23:11
510a531
Код
Авторство
О чём код?
name: Python codeqa/test/tag on: [push] jobs: flake8: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Check code style with Flake8 uses: TrueBrain/actions-flake8@v1.2 with: path: src tests test: needs: [flake8] strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: [2.7, 3.5, 3.6, 3.8, pypy3] exclude: - os: ubuntu-latest python-version: 3.6 - os: macos-latest python-version: 3.6 - os: macos-latest python-version: pypy3 - os: windows-latest python-version: 2.7 - os: windows-latest python-version: 3.5 - os: windows-latest python-version: pypy3 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Upgrade setuptools run: pip install "setuptools >= 40.9" - name: Install the project run: "pip install --no-binary=:all: ." - name: Install test dependencies run: pip install .[test] - name: Test with pytest run: pytest tag: runs-on: ubuntu-latest needs: test if: github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v1 - uses: agronholm/action-general-autotag@regexnofail with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} source_file: docs/news.rst extraction_regex: "\\*\\*(\\d+\\.\\d+\\.\\d+(?:(?:a|b|rc)\\d+)?) "