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

Update GH workflows #80

Closed
wants to merge 1 commit into from

Update GH workflows

6c05510
Select commit
Loading
Failed to load commit list.
Closed

Update GH workflows #80

Update GH workflows
6c05510
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Nov 12, 2024 in 2m 38s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the workflow-updates branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has two jobs, running in parallel.

Job Python ENV OS State
251.1 3.10 TOXENV=py310 Linux passed
251.2 3.10 TOXENV=linting Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Bionic)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "cache": {
    "pip": true
  },
  "before_script": [
    "pip install -r test_requirements.txt"
  ],
  "script": [
    "tox"
  ],
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "jobs": {
    "include": [
      {
        "python": "3.10",
        "env": [
          {
            "TOXENV": "py310"
          }
        ]
      },
      {
        "python": "3.10",
        "env": [
          {
            "TOXENV": "linting"
          }
        ]
      }
    ]
  }
}