/
niceSOFT
/
python3-installer
Обзор
Документация
Войти
/
niceSOFT
/
python3-installer
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.5.1
.github/workflows/ci.yml
52 строки
1 KB
Thomas Kluyver
Run tests on CPython on Github actions
12 янв 2022, 14:18
12 янв 2022, 14:18
7b9400a
Код
Авторство
О чём код?
name: CI on: pull_request: push: branches: [main] jobs: tests: name: tests / ${{ matrix.os }} / ${{ matrix.python-version }} runs-on: ${{ matrix.os }}-latest strategy: matrix: os: [Windows, Ubuntu, MacOS] python-version: ["3.7", "3.8", "3.9", "3.10"] include: # Only run PyPy jobs, on Ubuntu. - os: Ubuntu python-version: pypy-3.7 steps: - uses: actions/checkout@v2 # Get Python to test against - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} # Setup pip's cache - name: Save date (for cache) id: date run: echo "::set-output name=date::$(date +%F)" - name: Save pip cache dir id: pip-cache-dir run: echo "::set-output name=dir::$(pip cache dir)" - name: pip cache uses: actions/cache@v1 with: path: ${{ steps.pip-cache-dir.outputs.dir }} key: pip-v1-${{ runner.os }}-${{ steps.date.outputs.date }} restore-keys: pip-v1-${{ runner.os }} - run: pip install nox - run: > nox -s test-${{ matrix.python-version }} doctest-${{ matrix.python-version }} --error-on-missing-interpreters if: matrix.python-version != 'pypy-3.7' - run: nox --error-on-missing-interpreters -s test-pypy3 doctest-pypy3 if: matrix.python-version == 'pypy-3.7'