Server Admin
Server Info
File Manager
Commander
MySQL Client
PHP Info
Editing: ci.yml
name: Continuous Integration on: push: branches: - master pull_request: paths: - .github/workflows/ci.yml - pyparsing/* - pyproject.toml - tox.ini permissions: contents: read jobs: tests: name: Unit tests runs-on: ${{ matrix.os || 'ubuntu-latest' }} strategy: matrix: os: ["ubuntu-latest"] toxenv: [py] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] include: - python-version: "3.6" os: ubuntu-20.04 - python-version: "3.11" os: macos-latest - python-version: "3.11" toxenv: mypy-test - python-version: "pypy-3.9" env: TOXENV: ${{ matrix.toxenv || 'py' }} steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install tox railroad-diagrams Jinja2 - name: Test run: tox
Save Changes
Back to File Manager