├── .github └── workflows │ ├── ci.yml │ └── validation.yml ├── .gitignore ├── README.md ├── repos-bitbucket.md ├── repos-github.md ├── repos-gitlab.md ├── scripts └── test-repos.scala ├── sort.sh ├── test └── repos.md └── workspace-2022-06-01.tar.gz /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/.github/workflows/validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/README.md -------------------------------------------------------------------------------- /repos-bitbucket.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /repos-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/repos-github.md -------------------------------------------------------------------------------- /repos-gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/repos-gitlab.md -------------------------------------------------------------------------------- /scripts/test-repos.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/scripts/test-repos.scala -------------------------------------------------------------------------------- /sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/sort.sh -------------------------------------------------------------------------------- /test/repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/test/repos.md -------------------------------------------------------------------------------- /workspace-2022-06-01.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtusLab/scala-steward-repos/HEAD/workspace-2022-06-01.tar.gz --------------------------------------------------------------------------------