/
niceSOFT
/
python3-pathspec
Обзор
Документация
Войти
/
niceSOFT
/
python3-pathspec
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.10.2
.github/workflows/ci.yaml
34 строки
741 B
Richard Si
CI: add GitHub Actions test workflow
22 авг 2022, 19:39
Не верифицирован
22 авг 2022, 19:39
6fb13aa
Код
Авторство
О чём код?
name: CI permissions: contents: read on: push: branches: [master] pull_request: jobs: test: name: Test / ${{ matrix.python }} / ${{ matrix.os }} runs-on: ${{ matrix.os }}-latest strategy: fail-fast: false matrix: os: [ubuntu, macos, windows] python: ["3.7", "3.8", "3.9", "3.10", "3.11.0-rc - 3.11", "pypy-3.7", "pypy-3.8", "pypy-3.9"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - name: Install tox run: python -m pip install tox - name: Run tests run: python -m tox -e py -- --verbose