Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update contributors #197

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

chore: update contributors

54d988d
Select commit
Loading
Failed to load commit list.
Open

chore: update contributors #197

chore: update contributors
54d988d
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Dec 10, 2024 in 12m 55s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #197 chore: update contributors.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has five jobs, running in five sequential stages.

Stage 1: Test Python 3.9

This stage passed.

Job Python OS State
833.1 3.9 Linux passed

Stage 2: Test Python 3.10

This stage passed.

Job Python OS State
833.2 3.10 Linux passed

Stage 3: Test Python 3.11

This stage passed.

Job Python OS State
833.3 3.11 Linux passed

Stage 4: Test Python 3.12

This stage passed.

Job Python OS State
833.4 3.12 Linux passed

Stage 5: Markdown link checks

This stage passed.

Job Node.js OS State
833.5 18 Linux passed

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Focal)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "branches": {
    "only": [
      "master"
    ]
  },
  "addons": {
    "postgresql": "12",
    "apt": {
      "update": true,
      "packages": [
        "postgresql-12-postgis-3"
      ]
    }
  },
  "jobs": {
    "include": [
      {
        "stage": "Test Python 3.9",
        "language": "python",
        "python": "3.9",
        "install": [
          "pip install -e .[dev,prod]"
        ],
        "script": [
          "pytest"
        ]
      },
      {
        "stage": "Test Python 3.10",
        "language": "python",
        "python": "3.10",
        "install": [
          "pip install -e .[dev,prod]"
        ],
        "script": [
          "pytest"
        ]
      },
      {
        "stage": "Test Python 3.11",
        "language": "python",
        "python": "3.11",
        "install": [
          "pip install -e .[dev,prod]"
        ],
        "script": [
          "pytest"
        ]
      },
      {
        "stage": "Test Python 3.12",
        "language": "python",
        "python": "3.12",
        "install": [
          "pip install -e .[dev,prod]"
        ],
        "script": [
          "pytest"
        ]
      },
      {
        "stage": "Markdown link checks",
        "language": "node_js",
        "node_js": "18",
        "script": [
          "npm install --global remark-cli remark-validate-links",
          "remark -u validate-links .",
          "export FAILURE_THRESHOLD=0\nexport warnings=`remark -u validate-links . 2>&1 | grep warning | grep \"Link to unknown\" | wc -l`\nif [ $warnings -gt $FAILURE_THRESHOLD ]; then\n  exit 1;\nfi"
        ]
      }
    ]
  }
}