HEX
Server: LiteSpeed
System: Linux br-asc-web1886.main-hosting.eu 5.14.0-611.42.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 24 05:30:20 EDT 2026 x86_64
User: u833151717 (833151717)
PHP: 8.2.30
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //opt/gsutil/third_party/pyparsing/.github/workflows/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