/
niceSOFT
/
python3-wheel
Обзор
Документация
Войти
/
niceSOFT
/
python3-wheel
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.41.3
.github/workflows/test.yml
59 строк
2 KB
Alex Grönholm
Also test on Python 3.13 (#580)
30 окт 2023, 12:43
Не верифицирован
30 окт 2023, 12:43
e59ae03
Код
Авторство
О чём код?
name: Run the test suite on: push: branches: [main] pull_request: workflow_dispatch: schedule: - cron: '0 6 * * 1' jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.8", "pypy-3.9"] include: - os: macos-latest python-version: "3.7" - os: windows-latest python-version: "3.7" - os: macos-latest python-version: "3.11" - os: windows-latest python-version: "3.11" - os: macos-latest python-version: "pypy-3.9" - os: windows-latest python-version: "pypy-3.9" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} allow-prereleases: true - uses: actions/cache@v3 with: path: ~/.cache/pip key: pip-test-${{ matrix.python-version }}-${{ matrix.os }} - name: Install the project run: pip install --no-binary=wheel . - name: Install test dependencies run: pip install .[test] coverage[toml] - name: Include SDist check dependencies if: matrix.python-version == '3.11' run: pip install build flit - name: Test with pytest run: | coverage run -m pytest coverage xml env: PYTHONWARNDEFAULTENCODING: 1 - name: Send coverage data to Codecov uses: codecov/codecov-action@v3 with: file: coverage.xml