content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
engines:\n gofmt:\n enabled: true\n golint:\n enabled: true\n govet:\n enabled: true\n\nexclude_patterns:\n- ".github/"\n- "vendor/"\n- "codegen/"\n- "*.yml"\n- ".*.yml"\n- "*.md"\n- "Gopkg.*"\n- "doc.go"\n- "type_specific_codegen_test.go"\n- "type_specific_codegen.go"\n- ".gitignore"\n- "LICENSE"\n | dataset_sample\yaml\kubernetes_kubernetes\vendor\github.com\stretchr\objx\.codeclimate.yml | .codeclimate.yml | YAML | 291 | 0.7 | 0 | 0 | awesome-app | 701 | 2024-05-19T00:17:49.190138 | Apache-2.0 | false | e562ab2d6bdcdea92e1777334824ba2d |
version: '3'\n\ntasks:\n default:\n deps: [test]\n\n lint:\n desc: Checks code style\n cmds:\n - gofmt -d -s *.go\n - go vet ./...\n silent: true\n\n lint-fix:\n desc: Fixes code style\n cmds:\n - gofmt -w -s *.go\n\n test:\n desc: Runs go tests\n cmds:\n - go test -race ... | dataset_sample\yaml\kubernetes_kubernetes\vendor\github.com\stretchr\objx\Taskfile.yml | Taskfile.yml | YAML | 435 | 0.7 | 0 | 0 | node-utils | 122 | 2023-08-04T10:13:55.673901 | Apache-2.0 | false | 3d1a878f7a54a73dde3ef6efec96e4b5 |
language: go\n\ngo:\n - 1.11.x\n\nenv:\n - GO111MODULE=on \n \nscript:\n - go test -short -coverprofile=coverage.txt -covermode=count ./...\n\nafter_success:\n - bash <(curl -s https://codecov.io/bash) \n | dataset_sample\yaml\kubernetes_kubernetes\vendor\github.com\x448\float16\.travis.yml | .travis.yml | YAML | 197 | 0.8 | 0 | 0 | node-utils | 921 | 2024-04-18T10:53:40.126797 | Apache-2.0 | false | 773d8d82e81a1db1741743c8ad3b9b7d |
# See https://github.com/golangci/golangci-lint#config-file\nrun:\n issues-exit-code: 1 #Default\n tests: true #Default\n\nlinters:\n # Disable everything by default so upgrades to not include new "default\n # enabled" linters.\n disable-all: true\n # Specifically enable linters we want to use.\n enable:\n - ... | dataset_sample\yaml\kubernetes_kubernetes\vendor\go.opentelemetry.io\otel\.golangci.yml | .golangci.yml | YAML | 12,126 | 0.95 | 0.021538 | 0.223602 | awesome-app | 751 | 2025-06-17T05:35:43.881038 | Apache-2.0 | false | 51bb55ddac75789a915f2ea3db558791 |
output:\n # Make output more digestible with quickfix in vim/emacs/etc.\n sort-results: true\n print-issued-lines: false\n\nlinters:\n enable:\n - gofumpt\n - nolintlint\n - revive\n\nlinters-settings:\n govet:\n # These govet checks are disabled by default, but they're useful.\n enable:\n - ni... | dataset_sample\yaml\kubernetes_kubernetes\vendor\go.uber.org\goleak\.golangci.yml | .golangci.yml | YAML | 635 | 0.8 | 0 | 0.208333 | node-utils | 927 | 2024-06-07T09:26:07.006286 | Apache-2.0 | false | 0f7fbc2a02ff0c3d66ab60b306590bf7 |
coverage:\n range: 80..100\n round: down\n precision: 2\n\n status:\n project: # measuring the overall project coverage\n default: # context, you can create multiple ones with custom titles\n enabled: yes # must be yes|true to enable this status\n ta... | dataset_sample\yaml\kubernetes_kubernetes\vendor\go.uber.org\multierr\.codecov.yml | .codecov.yml | YAML | 763 | 0.8 | 0.2 | 0.153846 | react-lib | 609 | 2025-01-02T00:13:04.199753 | BSD-3-Clause | false | 47a21b3ecf2c1abbbffc83074925a3c0 |
coverage:\n range: 80..100\n round: down\n precision: 2\n\n status:\n project: # measuring the overall project coverage\n default: # context, you can create multiple ones with custom titles\n enabled: yes # must be yes|true to enable this status\n ta... | dataset_sample\yaml\kubernetes_kubernetes\vendor\go.uber.org\zap\.codecov.yml | .codecov.yml | YAML | 801 | 0.8 | 0.176471 | 0.133333 | react-lib | 602 | 2025-03-07T03:00:38.205055 | BSD-3-Clause | false | 322c63b6b124b9e5ab95491701bf47fb |
output:\n # Make output more digestible with quickfix in vim/emacs/etc.\n sort-results: true\n print-issued-lines: false\n\nlinters:\n # We'll track the golangci-lint default linters manually\n # instead of letting them change without our control.\n disable-all: true\n enable:\n # golangci-lint defaults:\n ... | dataset_sample\yaml\kubernetes_kubernetes\vendor\go.uber.org\zap\.golangci.yml | .golangci.yml | YAML | 2,386 | 0.95 | 0.025974 | 0.333333 | react-lib | 440 | 2024-11-15T19:13:19.080005 | Apache-2.0 | false | b126debe5c78b49b8d216daa58b8968a |
language: go\n\ngo:\n - tip\n\ninstall:\n - export GOPATH="$HOME/gopath"\n - mkdir -p "$GOPATH/src/golang.org/x"\n - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2"\n - go get -v -t -d golang.org/x/oauth2/...\n\nscript:\n - go test -v golang.org/x/oauth2/...\n | dataset_sample\yaml\kubernetes_kubernetes\vendor\golang.org\x\oauth2\.travis.yml | .travis.yml | YAML | 262 | 0.7 | 0 | 0 | awesome-app | 301 | 2024-08-11T17:08:51.935320 | Apache-2.0 | false | 1a68e7809045200cda2e2ed6fc4f5890 |
language: go\n\nsudo: false\n\nmatrix:\n fast_finish: true\n allow_failures:\n - go: tip\n\ngo:\n- '1.14.x'\n- '1.15.x'\n- tip\n\ngo_import_path: gopkg.in/square/go-jose.v2\n\nbefore_script:\n- export PATH=$HOME/.local/bin:$PATH\n\nbefore_install:\n# Install encrypted gitcookies to get around bandwidth-limits\n# t... | dataset_sample\yaml\kubernetes_kubernetes\vendor\gopkg.in\go-jose\go-jose.v2\.travis.yml | .travis.yml | YAML | 1,413 | 0.95 | 0.022222 | 0.081081 | awesome-app | 136 | 2023-09-17T15:33:55.664875 | MIT | false | 61ce2ebc37cff1e819f020395ee5c6f1 |
language: go\narch: arm64\ndist: focal\ngo: 1.15.x\nscript:\n - diff -u <(echo -n) <(gofmt -d *.go)\n - diff -u <(echo -n) <(golint $(go list -e ./...) | grep -v YAMLToJSON)\n - GO111MODULE=on go vet .\n - GO111MODULE=on go test -v -race ./...\n - git diff --exit-code\ninstall:\n - GO111MODULE=off go get golang.o... | dataset_sample\yaml\kubernetes_kubernetes\vendor\sigs.k8s.io\yaml\.travis.yml | .travis.yml | YAML | 326 | 0.7 | 0 | 0 | react-lib | 832 | 2025-05-17T20:41:27.826288 | BSD-3-Clause | false | 80c3e7b46ca42256453e99bc0225f319 |
comment:\n layout: "reach, diff, flags, files"\n behavior: default\n require_changes: false # if true: only post the comment if coverage changes\n require_base: no # [yes :: must have a base report to post]\n require_head: yes # [yes :: must have a head report to post]\n branches: null # br... | dataset_sample\yaml\kubernetes_minikube\.codecov.yml | .codecov.yml | YAML | 346 | 0.95 | 0.333333 | 0 | vue-tools | 698 | 2023-12-11T10:35:52.571720 | MIT | false | a07a5040835b30940c9072bb7e41c8de |
header:\n schema-version: 1.0.0\n expiration-date: '2024-12-17T01:00:00.000Z'\n last-updated: '2023-12-17'\n last-reviewed: '2023-12-17'\n commit-hash: 8220a6eb95f0a4d75f7f2d7b14cef975f050512d\n project-url: https://github.com/kubernetes/minikube\n project-release: '1.32.0'\n changelog: https://github.com/kuber... | dataset_sample\yaml\kubernetes_minikube\SECURITY-INSIGHTS.yml | SECURITY-INSIGHTS.yml | YAML | 2,542 | 0.8 | 0 | 0 | python-kit | 734 | 2025-02-25T20:05:51.729805 | Apache-2.0 | false | f6f216a37a4ff44e083980fa389869fe |
services:\n volumes-provisioner:\n image: hasnat/volumes-provisioner\n environment:\n PROVISION_DIRECTORIES: "1000:1000:0755:/tmp/certs"\n volumes:\n - "./certs:/tmp/certs"\n network_mode: none\n\n cert-gen:\n image: eventstore/es-gencert-cli:1.0.2\n entrypoint: bash\n user: "1000:1000"... | dataset_sample\yaml\kurrent-io_KurrentDB\docker-compose.yml | docker-compose.yml | YAML | 3,193 | 0.7 | 0 | 0 | node-utils | 867 | 2024-01-29T23:43:24.582950 | BSD-3-Clause | false | ac5132d8d6fbe511ab5cce5992db6feb |
php:\n preset: laravel\n version: 8.2\n finder:\n not-name:\n - bad-syntax-strategy.php\njs:\n finder:\n exclude:\n - src/Illuminate/Foundation/resources/exceptions/renderer/dist\n not-name:\n - webpack.mix.js\ncss:\n finder:\n exclude:\n - src/Illuminate/Foundation/resources/except... | dataset_sample\yaml\laravel_framework\.styleci.yml | .styleci.yml | YAML | 324 | 0.7 | 0 | 0 | python-kit | 380 | 2024-06-13T00:33:43.941916 | Apache-2.0 | false | c3e44af62a8e6a2e1d3ae457a79a5197 |
version: '3'\nservices:\n dynamodb:\n image: amazon/dynamodb-local:2.0.0\n ports:\n - "8000:8000"\n command: ["-jar", "DynamoDBLocal.jar", "-sharedDb", "-inMemory"]\n memcached:\n image: memcached:1.6-alpine\n ports:\n - "11211:11211"\n restart: always\n mysql:\n image: mysql/mysql-ser... | dataset_sample\yaml\laravel_framework\docker-compose.yml | docker-compose.yml | YAML | 2,123 | 0.8 | 0 | 0.658228 | node-utils | 149 | 2025-06-01T10:04:48.390978 | BSD-3-Clause | false | 6e499f4e2c8169e26fac381ac03baa19 |
namespace: Tests\nsupport_namespace: Support\npaths:\n tests: tests\n output: tests/_output\n data: tests/Support/Data\n support: tests/Support\nactor_suffix: Tester\nextensions:\n enabled:\n - Codeception\Extension\RunFailed\nsettings:\n memory_limit: 1024M\n colors: true\n error_level: E_ALL & ~E_DEPRECATE... | dataset_sample\yaml\Leantime_leantime\codeception.yml | codeception.yml | YAML | 359 | 0.8 | 0 | 0 | node-utils | 956 | 2024-02-22T12:09:29.237395 | GPL-3.0 | false | 491920a2ed0d87e78d9da1cc00615cf8 |
changelog_type: 'commit_message'\nheader_prefix: 'Version:'\ncommit_changelog: true\ncomment_changelog: true\ninclude_unlabeled_changes: true\nunlabeled_group_title: 'Unlabeled Changes'\npull_request_title_regex: '^Release'\nversion_regex: 'v?([0-9]{1,2})+[.]+([0-9]{1,2})+[.]+([0-9]{1,2})\s\(\d{1,2}-\d{1,2}-\d{4}\)'\ne... | dataset_sample\yaml\Leantime_leantime\.github\changelogConfig.yml | changelogConfig.yml | YAML | 685 | 0.7 | 0 | 0 | python-kit | 725 | 2024-10-30T10:43:13.753615 | Apache-2.0 | false | f14657ff7603b3b97654be1ba6411a42 |
changelog:\n exclude:\n labels:\n - ignore-for-release\n categories:\n - title: 🛠 Breaking Changes \n labels:\n - Breaking-Change\n - title: 🎉 New Features \n labels:\n - Feature\n - title: 🐞 Bug Fixes\n labels:\n - Bug\n - title: Other Changes\n labels:... | dataset_sample\yaml\Leantime_leantime\.github\release.yml | release.yml | YAML | 326 | 0.7 | 0.058824 | 0 | react-lib | 696 | 2025-02-01T07:13:47.188642 | GPL-3.0 | false | ef76964f63b248b07df5bde30087ca9a |
name: Bug Report\ndescription: File a bug report.\ntitle: "Enter a title of your bug"\ntype: "Bug"\nassignees: \n - marcelfolaron\nbody:\n - type: markdown\n attributes:\n value: "Thank you for taking the time to submit a bug report. If you have problems with the installation or other questions please use the... | dataset_sample\yaml\Leantime_leantime\.github\ISSUE_TEMPLATE\bug_report.yml | bug_report.yml | YAML | 1,546 | 0.95 | 0.019231 | 0 | awesome-app | 192 | 2024-04-07T22:29:27.207531 | MIT | false | 3c16c5a2ddf49f1e4fe0dec8963ecf9d |
name: Feature request\ndescription: Suggest an idea for this project.\ntitle: "Enter title of your feature suggestion"\ntype: "Feature"\nassignees: \n - marcelfolaron\nbody:\n - type: markdown\n attributes:\n value: "Thank you for taking the time to submit a feature request. If you have problems with the inst... | dataset_sample\yaml\Leantime_leantime\.github\ISSUE_TEMPLATE\feature_request.yml | feature_request.yml | YAML | 1,316 | 0.95 | 0.055556 | 0 | react-lib | 25 | 2023-07-26T11:58:16.588189 | Apache-2.0 | false | 2f3588efd1820ff7c8b6663a6ebd0dac |
name: Code Style Analysis\n\non:\n workflow_dispatch:\n push:\n branches: [ "master", "*.*-dev" ]\n pull_request:\n branches: [ "master", "*.*-dev" ]\n\njobs:\n pint:\n\n runs-on: ubuntu-24.04\n\n steps:\n - uses: actions/checkout@v3\n\n - name: Install Dependencies\n run: make build-dev\n\n ... | dataset_sample\yaml\Leantime_leantime\.github\workflows\codeStyleAnalysis.yml | codeStyleAnalysis.yml | YAML | 369 | 0.7 | 0 | 0 | vue-tools | 962 | 2024-08-31T23:30:10.902031 | BSD-3-Clause | false | b68cf74aebecef2463f9d08f081e95d0 |
name: Makefile CI\n\non:\n workflow_dispatch:\n push:\n branches: [ "master", "*.*-dev" ]\n pull_request:\n branches: [ "master", "*.*-dev" ]\n\njobs:\n build:\n\n runs-on: ubuntu-24.04\n\n steps:\n - uses: actions/checkout@v3\n\n - name: Install dependencies\n run: make build\n\n - name: ... | dataset_sample\yaml\Leantime_leantime\.github\workflows\makefile.yml | makefile.yml | YAML | 336 | 0.7 | 0 | 0 | node-utils | 6 | 2024-06-15T06:25:19.373909 | GPL-3.0 | false | d02b884e2917775ca7a06d89838070b8 |
name: Create Release\n\non:\n workflow_dispatch:\n push:\n tags:\n - '*'\n\njobs:\n build_release:\n name: build_release\n runs-on: ubuntu-24.04\n steps:\n - name: checkout\n uses: actions/checkout@v3\n with:\n fetch-depth: 0\n\n - name: version\n run: echo "v... | dataset_sample\yaml\Leantime_leantime\.github\workflows\release.yml | release.yml | YAML | 3,090 | 0.8 | 0 | 0.095238 | react-lib | 19 | 2023-11-10T20:07:14.642944 | GPL-3.0 | false | 7cf63cac91edaef87bf392a27b9266fa |
name: Static Analysis\n\non:\n workflow_dispatch:\n push:\n branches: [ "master", "*.*-dev" ]\n pull_request:\n branches: [ "master", "*.*-dev" ]\n\njobs:\n phpstan:\n runs-on: ubuntu-24.04\n steps:\n - uses: actions/checkout@v3\n\n - name: Install Dependencies\n run: make build-dev\n\n - ... | dataset_sample\yaml\Leantime_leantime\.github\workflows\staticAnalysis.yml | staticAnalysis.yml | YAML | 353 | 0.7 | 0 | 0 | node-utils | 860 | 2025-02-02T09:23:37.310478 | BSD-3-Clause | false | 3e9fe79483d18c099f0e03f5c0c6692a |
# Codeception Test Suite Configuration\n#\n# Suite for acceptance tests.\n# Perform tests in browser using the WebDriver or PhpBrowser.\n# If you need both WebDriver and PHPBrowser tests - create a separate suite.\nactor: AcceptanceTester\nbootstrap: bootstrap.php\nmodules:\n enabled:\n - \Tests\Support\Helper\Acce... | dataset_sample\yaml\Leantime_leantime\tests\Acceptance.suite.yml | Acceptance.suite.yml | YAML | 979 | 0.8 | 0.028571 | 0.147059 | react-lib | 252 | 2025-01-23T12:46:37.526697 | MIT | true | 66f07b013ee60b4b099493bb96389980 |
# Codeception Test Suite Configuration\n\n# The actor attribute identifies the testing scenario. In this case, it's a `UnitTester`\nactor: UnitTester\n\nerror_level: E_ALL & ~E_STRICT & ~E_DEPRECATED\n\nmodules:\n enabled:\n - Asserts\n\ncoverage:\n enabled: true\n | dataset_sample\yaml\Leantime_leantime\tests\Unit.suite.yml | Unit.suite.yml | YAML | 257 | 0.8 | 0 | 0.222222 | node-utils | 275 | 2024-03-23T02:14:23.558181 | GPL-3.0 | true | dacb6354493a253782891cccf3aad5a9 |
build:\n environment:\n php: '5.6.0'\n\nbefore_commands:\n - "composer install --prefer-source"\n\ntools:\n external_code_coverage:\n enabled: true\n timeout: 300\n filter:\n excluded_paths:\n - 'docs/*'\n - 'examples/*'\n - 'e... | dataset_sample\yaml\leokhoa_laragon\etc\pear\PHPMailer\.scrutinizer.yml | .scrutinizer.yml | YAML | 3,627 | 0.8 | 0 | 0.066116 | awesome-app | 819 | 2025-05-03T00:07:24.532259 | MIT | false | 88da7dc05a597333f532affd20f0151c |
language: php\nphp:\n - 7.0\n - 5.6\n - 5.5\n - 5.4\n - 5.3\n - hhvm\n \nmatrix:\n allow_failures:\n - php: hhvm\n\nbefore_install:\n - sudo apt-get update -qq\n - sudo apt-get install -y -qq postfix\nbefore_script:\n - sudo service postfix stop\n - smtp-sink -d "%d.%H.%M.%S" localhost:2500 1000 &\n - mk... | dataset_sample\yaml\leokhoa_laragon\etc\pear\PHPMailer\.travis.yml | .travis.yml | YAML | 876 | 0.8 | 0 | 0 | python-kit | 182 | 2024-01-02T20:19:56.588064 | BSD-3-Clause | false | 223fa0902945c58ec03b009f23091e47 |
name: Docker Compose\n\non:\n push:\n branches: [ main, 'devnet_*', 'testnet_*' ]\n pull_request:\n branches:\n - "**"\n paths:\n - 'docker/**'\n - 'Cargo.toml'\n - '.github/workflows/docker-compose.yml'\n - 'toolchains/**'\n workflow_dispatch:\n\n# This allows a subsequently queued... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\docker-compose.yml | docker-compose.yml | YAML | 2,436 | 0.8 | 0 | 0.144928 | python-kit | 843 | 2024-02-20T07:40:30.600292 | GPL-3.0 | false | 71f2f6f4b13581472e53b8e95ab97660 |
name: Docker Image\n\non:\n push:\n branches: [ 'devnet_*', 'testnet_*' ]\n workflow_dispatch:\n\npermissions:\n contents: read\n\njobs:\n build-and-push:\n runs-on: ubuntu-latest\n timeout-minutes: 40\n\n steps:\n - uses: actions/checkout@v3\n with:\n fetch-depth: 0\n - uses: ... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\docker_image.yml | docker_image.yml | YAML | 2,065 | 0.7 | 0.016129 | 0 | vue-tools | 898 | 2024-10-09T19:44:00.615050 | BSD-3-Clause | false | fcd4c29e80ce7fdf6e6bc9849ee0edf2 |
name: Documentation\n\non:\n push:\n branches: [ main, 'devnet_*', 'testnet_*' ]\n paths-ignore:\n - '*.md'\n - 'docker/**'\n - 'docker_scylla/**'\n - 'configuration/**'\n - 'kubernetes/**'\n - 'scripts/**'\n workflow_dispatch:\n\n# This allows a subsequently queued workflow run to... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\documentation.yml | documentation.yml | YAML | 3,080 | 0.8 | 0.037383 | 0.298969 | node-utils | 124 | 2024-04-24T12:26:00.469762 | MIT | false | 549d38cb02e66f18f9ceda1b1656f941 |
name: DynamoDB tests\n\non:\n push:\n branches: [ main ]\n pull_request:\n branches:\n - "**"\n paths:\n - '.github/workflows/dynamodb.yml'\n - 'toolchains/**'\n - 'linera-views/**'\n - 'linera-storage/**'\n workflow_dispatch:\n\n# This allows a subsequently queued workflow run to i... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\dynamodb.yml | dynamodb.yml | YAML | 1,631 | 0.8 | 0 | 0.017857 | node-utils | 737 | 2024-06-26T07:38:31.565877 | MIT | false | 155c915e53d5dd4bdfa64a6b3ea6686d |
name: Explorer tests\n\non:\n push:\n branches: [ main ]\n pull_request:\n branches:\n - "**"\n paths-ignore:\n - 'CONTRIBUTING.md'\n - 'INSTALL.md'\n - 'docker/**'\n - 'kubernetes/**'\n workflow_dispatch:\n\n# This allows a subsequently queued workflow run to interrupt previous run... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\explorer.yml | explorer.yml | YAML | 1,186 | 0.8 | 0 | 0.020833 | awesome-app | 854 | 2025-06-08T06:27:53.583397 | MIT | false | 863d438ace5c60b90a7006d8f11a2f54 |
name: Performance Summary\n\non:\n workflow_run:\n workflows:\n - Rust\n types:\n - completed\n workflow_dispatch:\n\n# This allows a subsequently queued workflow run to interrupt previous runs on pull-requests\nconcurrency:\n group: '${{ github.workflow }} @ ${{ github.head_ref || github.event.workf... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\performance_summary.yml | performance_summary.yml | YAML | 1,527 | 0.8 | 0.052632 | 0.088235 | awesome-app | 705 | 2025-04-11T05:05:53.494956 | MIT | false | 04a5e3b5bfc79785f0dc614752c463b2 |
name: Create Network Release\n\non:\n push:\n tags:\n - 'testnet-*-v[0-9]+.[0-9]+.[0-9]+'\n - 'devnet-*-v[0-9]+.[0-9]+.[0-9]+'\n\njobs:\n release:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n\n - name: Extract Tag Name\n id: tag\n run: echo "TAG_NAME=${G... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\release.yml | release.yml | YAML | 650 | 0.8 | 0 | 0 | awesome-app | 717 | 2023-11-25T00:40:11.657033 | Apache-2.0 | false | 1091fc8943812d3996d86a8e333a511a |
name: Rust\n\non:\n push:\n branches: [ main, 'devnet_*', 'testnet_*' ]\n pull_request:\n branches:\n - "**"\n paths-ignore:\n - 'CONTRIBUTING.md'\n - 'INSTALL.md'\n - 'docker/**'\n - 'docker_scylla/**'\n - 'configuration/**'\n - 'kubernetes/**'\n workflow_dispatch:\n\n# T... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\rust.yml | rust.yml | YAML | 15,583 | 0.8 | 0.027083 | 0.006928 | node-utils | 835 | 2023-12-11T01:53:32.370773 | MIT | false | 9e9fe771e6e715e0705f6e16a6f0f514 |
name: ScyllaDB tests\n\non:\n push:\n branches: [ main, 'devnet_*', 'testnet_*' ]\n pull_request:\n branches:\n - "**"\n paths:\n - '.github/workflows/scylladb.yml'\n - 'toolchains/**'\n - 'linera-views/**'\n - 'linera-storage/**'\n - 'docker_scylla/**'\n workflow_dispatch:\n\n... | dataset_sample\yaml\linera-io_linera-protocol\.github\workflows\scylladb.yml | scylladb.yml | YAML | 1,546 | 0.8 | 0 | 0.019231 | node-utils | 92 | 2024-09-15T07:31:59.879827 | GPL-3.0 | false | 4f16ba898cd78457a042b78b571103d3 |
services:\n scylla:\n image: scylladb/scylla:6.1.3\n container_name: scylla\n volumes:\n - linera-scylla-data:/var/lib/scylla\n environment:\n SCYLLA_AUTO_CONF: 1\n command:\n - "--developer-mode"\n - "0"\n - "--overprovisioned"\n - "1"\n\n proxy:\n image: "${LINERA_IMA... | dataset_sample\yaml\linera-io_linera-protocol\docker\docker-compose.yml | docker-compose.yml | YAML | 1,870 | 0.7 | 0 | 0 | awesome-app | 531 | 2024-10-31T20:12:30.985533 | Apache-2.0 | false | d5aeb4df3f9a7dd3e821d53c821abcb8 |
global:\n scrape_interval: 15s\n\nscrape_configs:\n - job_name: 'metrics-server'\n static_configs:\n - targets: ['proxy:21100', 'shard:21100']\n | dataset_sample\yaml\linera-io_linera-protocol\docker\prometheus.yml | prometheus.yml | YAML | 147 | 0.7 | 0 | 0 | vue-tools | 386 | 2023-08-19T23:18:45.229648 | BSD-3-Clause | false | 47421750f997e1f7451a0235daab570d |
apiVersion: 1\n\nproviders:\n - name: 'linera'\n orgId: 1\n folder: ''\n type: file\n disableDeletion: false\n updateIntervalSeconds: 10\n options:\n path: /var/lib/grafana/dashboards\n | dataset_sample\yaml\linera-io_linera-protocol\docker\provisioning\dashboards\dashboards.yml | dashboards.yml | YAML | 198 | 0.7 | 0 | 0 | python-kit | 463 | 2025-05-23T22:40:22.846976 | GPL-3.0 | false | f535fba8ef4efa05608308936e21b358 |
version: 2\nupdates:\n\n - package-ecosystem: "github-actions"\n directory: "/"\n open-pull-requests-limit: 50\n schedule:\n interval: "daily"\n labels:\n - "sdou"\n - "dependencies"\n\n - package-ecosystem: "maven"\n directory: "/"\n open-pull-requests-limit: 50\n schedule:\n ... | dataset_sample\yaml\liquibase_liquibase\.github\dependabot.yml | dependabot.yml | YAML | 627 | 0.8 | 0.041667 | 0.090909 | awesome-app | 292 | 2024-04-18T07:58:53.151669 | BSD-3-Clause | false | 7cac89b3175928d7d81f68eeaf36ab7c |
blank_issues_enabled: false\ncontact_links:\n - name: Liquibase Forums\n url: https://forum.liquibase.org/\n about: Please use the forums to ask open-ended questions and connect with other Liquibase Users and Developers.\n - name: StackOverflow\n url: https://stackoverflow.com/questions/tagged/liquibase\n ... | dataset_sample\yaml\liquibase_liquibase\.github\ISSUE_TEMPLATE\config.yml | config.yml | YAML | 452 | 0.8 | 0 | 0 | vue-tools | 323 | 2023-10-23T19:56:38.863879 | MIT | false | def764472b738b4536e017d81de93014 |
name: Build Azure Uber jar\n\non:\n workflow_call:\n inputs:\n branch:\n description: 'branch to check out'\n required: true\n type: string\n liquibase-version:\n description: 'liquibase version'\n required: true\n type: string\n workflow_dispatch:\n inputs:\n... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\build-azure-uber-jar.yml | build-azure-uber-jar.yml | YAML | 3,689 | 0.95 | 0 | 0 | awesome-app | 381 | 2025-02-20T06:16:16.044194 | BSD-3-Clause | false | a6881922920224f07d9207a242e7648b |
name: Build Branch SNAPSHOT\n\n# concurrent runs for pull requests (both internal and forked) will be canceled when a new run is triggered.\n# It does not specifically target or exclude the 'master' branch; it cancels concurrent runs whenever a pull request is triggered.\nconcurrency:\n group: ${{ github.workflow }}-$... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\build-branch.yml | build-branch.yml | YAML | 3,533 | 0.8 | 0.038462 | 0.067416 | node-utils | 903 | 2023-12-12T22:37:07.470723 | Apache-2.0 | false | bfe50348ee20f219f0b140d154dac295 |
name: Build & Deploy extensions\n\non:\n workflow_call:\n inputs:\n liquibase-version:\n description: "liquibase version"\n required: true\n type: string\n dependencies:\n description: "Comma separated list of needed dependencies to release the extensions list"\n require... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\build-extension-jars.yml | build-extension-jars.yml | YAML | 14,052 | 0.95 | 0.032353 | 0 | react-lib | 352 | 2025-06-12T17:23:31.062018 | GPL-3.0 | false | b356d001aeb859cd8a213279891924dd |
name: Build Main/Master SNAPSHOT\n\non:\n workflow_dispatch:\n schedule:\n - cron: "5 6 * * *"\n push:\n branches:\n - 'main'\n - 'master'\n\njobs:\n setup:\n name: Setup\n runs-on: ubuntu-22.04\n outputs:\n timeStamp: ${{ steps.get-timestamp.outputs.timeStamp }}\n latestMergeSha:... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\build-main.yml | build-main.yml | YAML | 2,399 | 0.8 | 0.014925 | 0.035088 | react-lib | 877 | 2025-04-03T01:07:30.901695 | GPL-3.0 | false | 1ad70b72ac87818489ee9dadb1cb94e4 |
name: Build and Publish\n\n# The concurrency check will cancel in-progress runs on non-master branches and pull requests on forked repositories regardless of the target branch.\nconcurrency:\n group: ${{ github.workflow }}-${{ github.head_ref == 'master' && 'master' || github.run_id }}\n cancel-in-progress: true\n\no... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\build.yml | build.yml | YAML | 18,462 | 0.95 | 0.041436 | 0.102236 | python-kit | 702 | 2023-10-26T02:00:12.902065 | MIT | false | 391dd0bf3bf134c2e345137d265d8f52 |
name: Cleanup on Branch Delete\n\non:\n workflow_dispatch:\n delete:\n branches:\n - '**DAT-**'\n - 'github-action-**'\n - 'dependabot-**'\n - 'feat/**'\n\njobs:\n\n extract-branch-info:\n name: Extract Branch Info\n runs-on: ubuntu-22.04\n outputs:\n branch_name: ${{ ste... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\cleanup-branch-builds.yml | cleanup-branch-builds.yml | YAML | 5,422 | 0.8 | 0.104167 | 0.058824 | node-utils | 668 | 2025-02-22T17:34:24.361529 | GPL-3.0 | false | b0b86ecb524c423d89d3710149fe1aa4 |
name: Cleanup Master Builds on Release Published\n\non:\n workflow_dispatch:\n release:\n types: [ published ]\n\njobs:\n delete-package:\n name: Delete Github Packages for Master/Main\n runs-on: ubuntu-22.04\n\n strategy:\n matrix:\n packages_to_delete: [org.liquibase.liquibase-core, org.liq... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\cleanup-master-builds.yml | cleanup-master-builds.yml | YAML | 1,413 | 0.8 | 0.088235 | 0.344828 | vue-tools | 581 | 2025-05-02T20:22:56.326122 | MIT | false | ce049b8eb7d97194c48cb233fe52155f |
# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\n#\n# ******** NOTE ********\n# We have attempted to detect the languages i... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\codeql.yml | codeql.yml | YAML | 3,427 | 0.8 | 0.05618 | 0.4 | vue-tools | 601 | 2024-05-18T12:16:26.041302 | Apache-2.0 | false | 902200bf9f20861e74d905722992e860 |
name: Attach Artifacts To Draft Release\non:\n workflow_dispatch:\n inputs:\n version:\n description: "Version (example: 4.8.2)"\n required: true\n branch:\n description: "Branch to release (Defaults to master)"\n required: false\n default: "master"\n runId:\n ... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\create-release.yml | create-release.yml | YAML | 20,690 | 0.95 | 0.050209 | 0.02331 | vue-tools | 848 | 2023-12-18T14:23:17.218212 | Apache-2.0 | false | 5d8f9d9ae04c7634cf5eed2344fbaae1 |
name: Dry run release\n\non:\n workflow_dispatch: # Trigger on demand\n schedule: # Trigger weekly all Wednesdays at midnight UTC\n # Trigger weekly on Wednesday at midnight Austin time (Standard Time)\n - cron: "0 6 * * 3"\n\njobs:\n setup:\n runs-on: ubuntu-latest\n outputs:\n dry_run_id: ${{ step... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\dry-run-release.yml | dry-run-release.yml | YAML | 6,568 | 0.8 | 0.055944 | 0.062992 | python-kit | 265 | 2024-04-19T07:12:54.402839 | BSD-3-Clause | false | 50ffe3a06d608f4d33499db7b2f9f407 |
# Name of the GitHub Action workflow\nname: FOSSA License Compliance and Security Check\n\n# Event triggers for the workflow\non:\n workflow_dispatch: # Run this action manually from the GitHub Actions tab\n release:\n types: [published] # Run this action when a release is published\n \n# Define the jobs in the ... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\fossa.yml | fossa.yml | YAML | 4,931 | 0.8 | 0.038462 | 0.094828 | awesome-app | 62 | 2024-07-11T03:03:59.676585 | BSD-3-Clause | false | 5ff92b810b1b19802b6547c1c606bfa3 |
name: FOSSA License Compliance and Security Check\n\non:\n repository_dispatch:\n types: [ oss-released-version ]\n\njobs:\n fossa:\n uses: liquibase/build-logic/.github/workflows/fossa_ai.yml@main\n secrets: inherit\n with:\n latest_version: ${{ github.event.client_payload.latest_version }}\n r... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\fossa_ai.yml | fossa_ai.yml | YAML | 340 | 0.7 | 0 | 0 | node-utils | 261 | 2024-02-05T15:33:06.233920 | Apache-2.0 | false | a0cdc5f2fe7015f436605fea69d86143 |
name: Build Test Installers\n\non:\n workflow_dispatch:\n push:\n branches:\n - gha-scheduled-*\n\njobs:\n build-installers:\n name: Build Installers\n runs-on: ubuntu-22.04\n steps:\n - uses: actions/checkout@v4\n\n - name: Set up JDK for GPG\n uses: actions/setup-java@v4\n ... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\installer-build-check.yml | installer-build-check.yml | YAML | 5,094 | 0.8 | 0.044118 | 0.112069 | react-lib | 524 | 2024-07-27T16:24:17.099408 | GPL-3.0 | false | 1ac65287e5bd38ff4cd918dea34c0415 |
name: Pull Request Labels\non:\n pull_request:\n types: [opened, labeled, unlabeled, synchronize, reopened]\njobs:\n label:\n runs-on: ubuntu-latest\n permissions:\n issues: write\n pull-requests: write\n steps:\n - name: Validate PR Labels\n uses: mheap/github-action-required-labels... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\label-pr.yml | label-pr.yml | YAML | 733 | 0.85 | 0 | 0 | python-kit | 640 | 2024-01-02T06:31:27.493401 | Apache-2.0 | false | 6309de7536431c0b9ef276db9cda3d40 |
name: Release Extensions\non:\n workflow_dispatch:\n inputs:\n version:\n description: 'Liquibase Version'\n required: true\n\njobs:\n automated-os-extensions-release:\n uses: liquibase/build-logic/.github/workflows/os-extension-automated-release.yml@main\n secrets: inherit\n with:\n ... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\release-extensions.yml | release-extensions.yml | YAML | 342 | 0.85 | 0 | 0 | react-lib | 997 | 2025-05-27T18:14:35.070521 | BSD-3-Clause | false | 155807b6eef98a9d707a3294ed76eea6 |
name: Release Published\non:\n release:\n types: [published]\n workflow_dispatch:\n inputs:\n tag:\n description: "Release Tag"\n required: true\n dry_run:\n description: "Flag to indicate if the workflow is triggered to create a dry-run release"\n required: false\n ... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\release-published.yml | release-published.yml | YAML | 24,989 | 0.95 | 0.060458 | 0.0322 | awesome-app | 814 | 2023-08-07T15:13:58.852840 | Apache-2.0 | false | 5e61c52b250a4bf58e3123326875e580 |
\nname: Liquibase Url Prerequisites Check\n\n# Job will run nightly at 02:10 EDT / 01:10 CDT\n# Time below is UTC\non:\n schedule:\n - cron: "10 6 * * *"\n workflow_dispatch:\n\njobs:\n urlcheck:\n runs-on: ubuntu-22.04\n steps:\n - uses: actions/checkout@v4\n - name: Check URLs\n uses: url... | dataset_sample\yaml\liquibase_liquibase\.github\workflows\url-check.yml | url-check.yml | YAML | 1,518 | 0.8 | 0.045455 | 0.205128 | python-kit | 917 | 2023-11-12T17:56:00.983853 | Apache-2.0 | false | 2e5f373590f5efe09932af2602dc5b34 |
databaseChangeLog:\n- changeLogId: 5641ba64-35b7-491d-8dc9-d53189f987cf\n- changeSet:\n id: 1604960286751-1\n author: wesley (generated)\n changes:\n - createTable:\n columns:\n - column:\n name: ACCT_NUM\n type: NUMBER(*, 0)\n - column:\n name: AMOUNT\n... | dataset_sample\yaml\liquibase_liquibase\liquibase-standard\src\test\resources\liquibase\registered-changelog.yml | registered-changelog.yml | YAML | 5,108 | 0.7 | 0 | 0 | python-kit | 373 | 2024-05-22T00:58:02.521858 | GPL-3.0 | true | c84031673cfda72658eb84d83ac60c69 |
databaseChangeLog: \n- preConditions:\n - onFail: WARN \n - sqlCheck:\n expectedResult: 0\n sql: select count(*) from DATABASECHANGELOGLOCK\n- changeSet:\n id: 1 \n author: Liquibase User\n labels: setup\n changes:\n - createTable:\n columns:\n - column:\n ... | dataset_sample\yaml\liquibase_liquibase\liquibase-standard\src\test\resources\liquibase\simple.yml | simple.yml | YAML | 795 | 0.7 | 0 | 0 | python-kit | 992 | 2024-06-26T15:01:55.055709 | BSD-3-Clause | true | d402551e968ca53be14e75ceac11e9dd |
databaseChangeLog:\n - changeSet:\n id: cs1\n author: wesley (generated)\n changes:\n - createTable:\n columns:\n - column:\n name: ACCT_NUM\n type: NUMBER(*, 0)\n - column:\n name: AMOUNT\n t... | dataset_sample\yaml\liquibase_liquibase\liquibase-standard\src\test\resources\liquibase\resource\changelog1.yml | changelog1.yml | YAML | 387 | 0.7 | 0 | 0 | react-lib | 747 | 2024-04-12T15:42:54.274944 | Apache-2.0 | true | 59da731b68e4d0d37ad80cfc09222153 |
databaseChangeLog:\n - include:\n file: subresources/child-changelog1.yml\n relativeToChangelogFile: true | dataset_sample\yaml\liquibase_liquibase\liquibase-standard\src\test\resources\liquibase\resource\changelog2.yml | changelog2.yml | YAML | 113 | 0.7 | 0 | 0 | awesome-app | 991 | 2024-05-23T03:19:46.969036 | GPL-3.0 | true | 260cf71a495f1c8db102be3f724db065 |
databaseChangeLog:\n - changeSet:\n id: cs2\n author: wesley (generated)\n changes:\n - createTable:\n columns:\n - column:\n name: ACCT_NUM\n type: NUMBER(*, 0)\n - column:\n name: AMOUNT\n t... | dataset_sample\yaml\liquibase_liquibase\liquibase-standard\src\test\resources\liquibase\resource\subresources\child-changelog.yml | child-changelog.yml | YAML | 387 | 0.7 | 0 | 0 | python-kit | 370 | 2024-08-10T20:11:35.574185 | MIT | true | a719bf8f3cfd3cc73b1534be0e230249 |
databaseChangeLog:\n - include:\n file: child-changelog2.yml\n relativeToChangelogFile: true | dataset_sample\yaml\liquibase_liquibase\liquibase-standard\src\test\resources\liquibase\resource\subresources\child-changelog1.yml | child-changelog1.yml | YAML | 100 | 0.7 | 0 | 0 | awesome-app | 339 | 2024-08-28T07:25:09.797247 | Apache-2.0 | true | d05065aa0a3c3fd89f6c541a18f51b23 |
databaseChangeLog:\n - changeSet:\n id: cs2\n author: wesley (generated)\n changes:\n - createTable:\n columns:\n - column:\n name: ACCT_NUM\n type: NUMBER(*, 0)\n - column:\n name: AMOUNT\n t... | dataset_sample\yaml\liquibase_liquibase\liquibase-standard\src\test\resources\liquibase\resource\subresources\child-changelog2.yml | child-changelog2.yml | YAML | 387 | 0.7 | 0 | 0 | awesome-app | 310 | 2025-02-12T12:19:48.635878 | GPL-3.0 | true | a719bf8f3cfd3cc73b1534be0e230249 |
version: '3.8'\n\nservices:\n app:\n build:\n context: .\n dockerfile: Dockerfile\n env_file:\n - .env\n\n volumes:\n - .:/workspaces:cached\n\n # Overrides default command so things don't shut down after the process ends.\n command: sleep infinity\n\n app2:\n build:\n conte... | dataset_sample\yaml\loft-sh_devpod\examples\compose\docker-compose.devcontainer.yml | docker-compose.devcontainer.yml | YAML | 707 | 0.8 | 0 | 0.064516 | python-kit | 624 | 2024-11-05T22:34:09.829695 | Apache-2.0 | false | 34c96c958d8000bd0effef5b653edc34 |
# Setting "sudo" to false forces Travis-CI to use its\n# container-based build infrastructure, which has shorter\n# queue times.\nsudo: false\n\n# Use the newer Travis-CI build templates based on the\n# Debian Linux distribution "Trusty" release.\ndist: trusty\n\n# Select Go as the language used to run the buid.\nlangu... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\akutz\memconn\.travis.yml | .travis.yml | YAML | 450 | 0.95 | 0 | 0.333333 | awesome-app | 459 | 2024-04-27T16:44:00.339352 | Apache-2.0 | false | 66e582ddc3661ba02d282cbe6a67db64 |
# run:\n# # timeout for analysis, e.g. 30s, 5m, default is 1m\n# timeout: 5m\n\nlinters:\n disable-all: true\n enable:\n - bodyclose\n - deadcode\n - depguard\n - dogsled\n - goconst\n - gocritic\n - gofmt\n - goimports\n - golint\n - gosec\n - gosimple\n - govet\n - ineffas... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\alessio\shellescape\.golangci.yml | .golangci.yml | YAML | 1,222 | 0.95 | 0.015625 | 0.1 | python-kit | 158 | 2023-12-24T03:14:00.413122 | MIT | false | a49660cd429903e123c0400504c85d6b |
# This is an example goreleaser.yaml file with some sane defaults.\n# Make sure to check the documentation at http://goreleaser.com\nbefore:\n hooks:\n # You may remove this if you don't use go modules.\n - go mod download\n # you may remove this if you don't need go generate\n - go generate ./...\nbuilds:... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\alessio\shellescape\.goreleaser.yml | .goreleaser.yml | YAML | 719 | 0.8 | 0.060606 | 0.121212 | vue-tools | 861 | 2024-11-13T20:31:47.182131 | GPL-3.0 | false | 5fb2175e99e1aa27b49da356a4cbda30 |
language: go\ndist: xenial\ngo:\n - '1.10'\n - '1.11'\n - '1.12'\n - '1.13'\n - 'tip'\n\nscript:\n - go test -coverpkg=./... -coverprofile=coverage.info -timeout=5s\n - bash <(curl -s https://codecov.io/bash)\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\asaskevich\govalidator\.travis.yml | .travis.yml | YAML | 211 | 0.8 | 0 | 0 | react-lib | 696 | 2025-06-19T02:44:24.432985 | Apache-2.0 | false | 4fb366cf760148d33c44700fde620a9a |
box: golang\nbuild:\n steps:\n - setup-go-workspace\n\n - script:\n name: go get\n code: |\n go version\n go get -t ./...\n\n - script:\n name: go test\n code: |\n go test -race -v ./...\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\asaskevich\govalidator\wercker.yml | wercker.yml | YAML | 238 | 0.7 | 0 | 0 | react-lib | 511 | 2023-08-30T12:08:32.734948 | Apache-2.0 | false | b0676e8689976b4ad0d5a9347664a743 |
language: go\n\nos:\n - linux\n - osx\n - windows\n\ngo:\n - go1.13.x\n - go1.x\n\nservices:\n - xvfb\n\nbefore_install:\n - export DISPLAY=:99.0\n\nscript:\n - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install xsel; fi\n - go test -v .\n - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install xclip... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\atotto\clipboard\.travis.yml | .travis.yml | YAML | 321 | 0.7 | 0.090909 | 0 | awesome-app | 562 | 2024-10-23T10:35:12.949155 | BSD-3-Clause | false | a07df666b82ed543e17afd7ed9f8806f |
language: go\nsudo: true\ndist: bionic\n\nbranches:\n only:\n - main\n\nos:\n - linux\n - osx\n # Travis doesn't work with windows and Go tip\n #- windows\n\ngo:\n - tip\n\nmatrix:\n allow_failures:\n - go: tip\n\nbefore_install:\n - if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi\n - (... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\aws\smithy-go\.travis.yml | .travis.yml | YAML | 377 | 0.8 | 0.035714 | 0.095238 | node-utils | 836 | 2024-02-12T11:08:58.600479 | MIT | false | b615be337e1992846d32c080fc02c3fe |
variables:\n GOPATH: '$(system.defaultWorkingDirectory)/work'\n sdkPath: '$(GOPATH)/src/github.com/$(build.repository.name)'\n\njobs:\n - job: 'goautorest'\n displayName: 'Run go-autorest CI Checks'\n\n strategy:\n matrix:\n Linux_Go113:\n vm.image: 'ubuntu-18.04'\n go.version: '1... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\Azure\go-autorest\azure-pipelines.yml | azure-pipelines.yml | YAML | 3,290 | 0.8 | 0 | 0 | react-lib | 591 | 2025-06-27T10:28:56.356972 | MIT | false | 022982803f7dfe5197a49605b582c4de |
language: go\n\nsudo: false\n\nbranches:\n except:\n - release\n\nbranches:\n only:\n - master\n - travis\n\ngo:\n - "1.11.x"\n - tip\n\nmatrix:\n allow_failures:\n - go: tip\n\nbefore_install:\n - if [ -n "$GH_USER" ]; then git config --global github.user ${GH_USER}; fi;\n - if [ -n "$GH_TOKEN" ]; t... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\bits-and-blooms\bitset\.travis.yml | .travis.yml | YAML | 663 | 0.7 | 0.081081 | 0 | node-utils | 852 | 2024-11-12T23:00:55.183132 | GPL-3.0 | false | 9f88f79c62e770a313fa6cb5e1357f80 |
# Go\n# Build your Go project.\n# Add steps that test, save build artifacts, deploy, and more:\n# https://docs.microsoft.com/azure/devops/pipelines/languages/go\n\ntrigger:\n- master\n\npool:\n vmImage: 'Ubuntu-16.04'\n\nvariables:\n GOBIN: '$(GOPATH)/bin' # Go binaries path\n GOROOT: '/usr/local/go1.11' # Go insta... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\bits-and-blooms\bitset\azure-pipelines.yml | azure-pipelines.yml | YAML | 1,088 | 0.8 | 0.025641 | 0.117647 | awesome-app | 509 | 2024-02-24T18:01:22.731242 | Apache-2.0 | false | 910449991284db2e2701c068eac66862 |
language: go\nmatrix:\n include:\n - go: 1.4.3\n - go: 1.5.4\n - go: 1.6.3\n - go: 1.7\n - go: tip\n allow_failures:\n - go: tip\ninstall:\n- go get golang.org/x/tools/cmd/cover\n- go get github.com/mattn/goveralls\nscript:\n- echo "Test and track coverage" ; $HOME/gopath/bin/goveralls -package "." -service=tra... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\blang\semver\.travis.yml | .travis.yml | YAML | 657 | 0.7 | 0.047619 | 0 | node-utils | 137 | 2025-01-08T07:14:14.846131 | BSD-3-Clause | false | e65c6b9f1c960962fde1ef3a8ce75a45 |
coverage:\n status:\n project:\n default:\n threshold: 1%\n patch:\n default:\n target: 70%\nignore:\n - globoptions.go\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\bmatcuk\doublestar\v4\.codecov.yml | .codecov.yml | YAML | 143 | 0.7 | 0 | 0 | node-utils | 608 | 2024-07-02T10:12:19.372464 | Apache-2.0 | false | eef6bd47bfea08b4d2b429c74f8d8c45 |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n # - dupl\n - exhaustive\n # - exhaustivestruct\n - goconst\n - godot\n - godox\n - gomnd\n - gomoddi... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\charmbracelet\bubbletea\.golangci-soft.yml | .golangci-soft.yml | YAML | 682 | 0.8 | 0 | 0.095238 | python-kit | 221 | 2025-06-23T11:48:28.222415 | BSD-3-Clause | false | 68c0bc78b8976054556bfeb97ca84419 |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n - bodyclose\n - exportloopref\n - gofumpt\n - goimports\n - gosec\n - nilerr\n - predeclared\n - rev... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\charmbracelet\bubbletea\.golangci.yml | .golangci.yml | YAML | 403 | 0.85 | 0 | 0 | python-kit | 880 | 2024-08-29T16:48:31.274566 | MIT | false | a58c6fc6814d36d7242e0902bf770d46 |
includes:\n - from_url:\n url: charmbracelet/meta/main/goreleaser-lib.yaml\n\n# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json\n\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\charmbracelet\bubbletea\.goreleaser.yml | .goreleaser.yml | YAML | 159 | 0.8 | 0 | 0.25 | python-kit | 631 | 2023-12-07T04:38:55.374194 | GPL-3.0 | false | 7ff9ab22c2a905170aa831725a4f6c0d |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n - exhaustive\n - goconst\n - godot\n - mnd\n - gomoddirectives\n - goprintffuncname\n - misspell\n -... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\charmbracelet\huh\.golangci-soft.yml | .golangci-soft.yml | YAML | 570 | 0.8 | 0 | 0.028571 | react-lib | 8 | 2025-03-17T16:03:19.587097 | MIT | false | 180a0a617cabbcd0b44122b8c3608725 |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n - bodyclose\n - goimports\n - gosec\n - nilerr\n - predeclared\n - revive\n - rowserrcheck\n - sqlcl... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\charmbracelet\huh\.golangci.yml | .golangci.yml | YAML | 369 | 0.85 | 0 | 0 | node-utils | 464 | 2025-05-29T16:48:56.534584 | GPL-3.0 | false | 8ce38dd5c31bc5a2ccb601d6bbeeb320 |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n # - dupl\n - exhaustive\n # - exhaustivestruct\n - goconst\n - godot\n - godox\n - gomnd\n - gomoddi... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\charmbracelet\lipgloss\.golangci-soft.yml | .golangci-soft.yml | YAML | 682 | 0.8 | 0 | 0.095238 | awesome-app | 143 | 2024-03-18T10:20:01.709402 | MIT | false | 68c0bc78b8976054556bfeb97ca84419 |
run:\n tests: false\n\nissues:\n include:\n - EXC0001\n - EXC0005\n - EXC0011\n - EXC0012\n - EXC0013\n\n max-issues-per-linter: 0\n max-same-issues: 0\n\nlinters:\n enable:\n - bodyclose\n - exportloopref\n - gofumpt\n - goimports\n - gosec\n - nilerr\n - predeclared\n - rev... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\charmbracelet\lipgloss\.golangci.yml | .golangci.yml | YAML | 403 | 0.85 | 0 | 0 | awesome-app | 352 | 2024-05-05T03:37:42.320353 | Apache-2.0 | false | a58c6fc6814d36d7242e0902bf770d46 |
includes:\n - from_url:\n url: charmbracelet/meta/main/goreleaser-lib.yaml\n# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json\n\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\charmbracelet\lipgloss\.goreleaser.yml | .goreleaser.yml | YAML | 158 | 0.8 | 0 | 0.25 | vue-tools | 748 | 2024-06-08T22:14:12.484087 | MIT | false | 1de1344d0961a2f92aeafcb3f4c0f8e7 |
linters:\n enable:\n - gofmt\n - goimports\n - ineffassign\n - misspell\n - revive\n - staticcheck\n - structcheck\n - unconvert\n - unused\n - varcheck\n - vet\n disable:\n - errcheck\n\nrun:\n timeout: 3m\n skip-dirs:\n - vendor\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\containerd\console\.golangci.yml | .golangci.yml | YAML | 255 | 0.85 | 0 | 0 | node-utils | 402 | 2025-03-06T16:33:32.362721 | MIT | false | a11b4c6573b3396d5a5cf92605c2721a |
linters:\n enable:\n - exportloopref # Checks for pointers to enclosing loop variables\n - gofmt\n - goimports\n - gosec\n - ineffassign\n - misspell\n - nolintlint\n - revive\n - staticcheck\n - tenv # Detects using os.Setenv instead of t.Setenv since Go 1.17\n - unconvert\n - unus... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\containerd\log\.golangci.yml | .golangci.yml | YAML | 558 | 0.95 | 0.066667 | 0 | react-lib | 265 | 2025-05-01T22:28:33.641433 | Apache-2.0 | false | b8375607b0dbb7da9b703c9efacd207f |
linters:\n enable:\n - copyloopvar\n - gofmt\n - goimports\n - gosec\n - ineffassign\n - misspell\n - nolintlint\n - revive\n - staticcheck\n - tenv # Detects using os.Setenv instead of t.Setenv since Go 1.17\n - unconvert\n - unused\n - govet\n - dupword # Checks for duplicat... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\containerd\platforms\.golangci.yml | .golangci.yml | YAML | 520 | 0.95 | 0.03125 | 0 | awesome-app | 889 | 2024-10-07T20:52:27.026276 | BSD-3-Clause | false | fae484d7bf1b9704341b44d339aaba46 |
linters:\n enable:\n - staticcheck\n - unconvert\n - gofmt\n - goimports\n - revive\n - ineffassign\n - vet\n - unused\n - misspell\n disable:\n - errcheck\n\nlinters-settings:\n revive:\n ignore-generated-headers: true\n rules:\n - name: blank-imports\n - name: context-... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\containerd\ttrpc\.golangci.yml | .golangci.yml | YAML | 1,056 | 0.85 | 0.019231 | 0 | react-lib | 502 | 2024-08-18T08:53:25.312943 | BSD-3-Clause | false | 3fa4f43aeebbf8fa3bef90c586b55323 |
---\n# Reference: https://golangci-lint.run/usage/configuration/\nrun:\n timeout: 5m\n # modules-download-mode: vendor\n\n # Include test files.\n tests: true\n\n skip-dirs: []\n\n skip-files: []\n\noutput:\n # colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number".\n ... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\creack\pty\.golangci.yml | .golangci.yml | YAML | 18,922 | 0.95 | 0.175926 | 0.416961 | react-lib | 53 | 2025-06-01T21:48:32.352682 | Apache-2.0 | false | ef1ff7a7d39446d2637cdcb8e4c939c9 |
language: go\nsudo: false\n\ngo:\n - 1.10.x\n - 1.11.x\n - 1.12.x \n - 1.13.x\n - 1.14.x\n - 1.15.x\n\ncache:\n directories:\n - $HOME/.cache/go-build\n - $HOME/gopath/pkg/mod\n\nenv:\n global:\n - GO111MODULE=on\n\nbefore_install:\n - go get github.com/mattn/goveralls\n - go get golang.org/x/tools/... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\dimchansky\utfbom\.travis.yml | .travis.yml | YAML | 742 | 0.95 | 0 | 0 | vue-tools | 433 | 2025-03-22T18:53:12.108575 | GPL-3.0 | false | 3b8947c1a963469c966969cc983aa615 |
linters:\n enable:\n - bodyclose\n - dupword # Checks for duplicate words in the source code\n - gofmt\n - goimports\n - ineffassign\n - misspell\n - revive\n - staticcheck\n - unconvert\n - unused\n - vet\n disable:\n - errcheck\n\nrun:\n deadline: 2m\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\distribution\reference\.golangci.yml | .golangci.yml | YAML | 275 | 0.95 | 0.055556 | 0 | vue-tools | 22 | 2024-08-15T15:35:57.085803 | BSD-3-Clause | false | bf3404c60cd0bd42f202dc7ddfd34a58 |
dependencies:\n post:\n # install golint\n - go get golang.org/x/lint/golint\n\ntest:\n pre:\n # run analysis before tests\n - go vet ./...\n - test -z "$(golint ./... | tee /dev/stderr)"\n - test -z "$(gofmt -s -l . | tee /dev/stderr)"\n | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\docker\go-units\circle.yml | circle.yml | YAML | 247 | 0.8 | 0 | 0.2 | awesome-app | 331 | 2024-08-27T18:11:44.159031 | Apache-2.0 | false | c943afaea172b047085823d6e7e87fd8 |
sudo: false\nlanguage: go\ngo_import_path: github.com/dustin/go-humanize\ngo:\n - 1.13.x\n - 1.14.x\n - 1.15.x\n - 1.16.x\n - stable\n - master\nmatrix:\n allow_failures:\n - go: master\n fast_finish: true\ninstall:\n - # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\dustin\go-humanize\.travis.yml | .travis.yml | YAML | 482 | 0.95 | 0 | 0 | python-kit | 297 | 2025-01-26T10:00:39.469436 | Apache-2.0 | false | 41f052dec02291a32a59e5bc9ae5cd6b |
language: go\n\ngo:\n - 1.x\n\nbefore_install:\n - go test -v\n\nscript:\n - go test -race -coverprofile=coverage.txt -covermode=atomic\n\nafter_success:\n - bash <(curl -s https://codecov.io/bash) | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\emicklei\go-restful\v3\.travis.yml | .travis.yml | YAML | 189 | 0.8 | 0 | 0 | vue-tools | 344 | 2025-04-20T08:24:24.466080 | Apache-2.0 | false | 20ab9ad977d4a5252204f66008d029a1 |
linters:\n enable-all: true\n disable:\n - golint\n - interfacer\n - scopelint\n - maligned\n - rowserrcheck\n - funlen\n - depguard\n - goerr113\n - exhaustivestruct\n - testpackage\n - gochecknoglobals\n - wrapcheck\n - forbidigo\n - ifshort\n - cyclop\n - gomoddirect... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\erikgeiser\coninput\.golangci.yml | .golangci.yml | YAML | 415 | 0.7 | 0 | 0 | react-lib | 303 | 2024-05-19T00:57:34.908039 | MIT | false | d67d01eae48ae3fa3717bf3902f0cd9b |
freebsd_task:\n name: 'FreeBSD'\n freebsd_instance:\n image_family: freebsd-13-2\n install_script:\n - pkg update -f\n - pkg install -y go\n test_script:\n # run tests as user "cirrus" instead of root\n - pw useradd cirrus -m\n - chown -R cirrus:cirrus .\n - FSNOTIFY_BUFFER=4096 sudo --preser... | dataset_sample\yaml\loft-sh_devpod\vendor\github.com\fsnotify\fsnotify\.cirrus.yml | .cirrus.yml | YAML | 479 | 0.8 | 0 | 0.076923 | react-lib | 172 | 2023-08-22T18:46:42.143738 | BSD-3-Clause | false | dc3669dfa73049b7764268060a1b5b75 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.