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

Enable directory recursion in Dir() #15

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Use /... to indicate recursion instead of just a trailing slash

61ff2bb
Select commit
Loading
Failed to load commit list.
Open

Enable directory recursion in Dir() #15

Use /... to indicate recursion instead of just a trailing slash
61ff2bb
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 11, 2023 in 1m 41s

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 #15 Create a ListDirs method for convienient recorsive scan of directories.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has ten jobs, running in parallel.

Job Go OS State
55.1 1.16.x Linux passed
55.2 1.17.x Linux passed
55.3 1.18.x Linux passed
55.4 1.19.x Linux passed
55.5 1.16.x Linux passed
55.6 1.16.x Linux passed
55.7 1.16.x Linux passed
55.8 1.16.x Linux passed
55.9 1.16.x macOS passed
55.10 1.16.x windows passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Xenial)
Go Versions 1.16.x, 1.17.x, 1.18.x, 1.19.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "go": [
    "1.16.x",
    "1.17.x",
    "1.18.x",
    "1.19.x"
  ],
  "go_import_path": "github.com/teamwork/reload",
  "jobs": {
    "include": [
      {
        "os": "linux",
        "arch": "amd64"
      },
      {
        "os": "linux",
        "arch": "amd64"
      },
      {
        "os": "linux",
        "arch": "arm64"
      },
      {
        "os": "linux",
        "arch": "ppc64le"
      },
      {
        "os": "linux",
        "arch": "s390x"
      },
      {
        "os": "osx",
        "arch": "amd64"
      },
      {
        "os": "windows",
        "arch": "amd64"
      }
    ]
  },
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "install": [
],
"script": [
"export GO111MODULE=on\ngo test -race \\n  -coverprofile=coverage.txt \\n  -coverpkg=./... \\n  ./...\nbash <(curl -s https://codecov.io/bash)"
]
}