├── .circleci └── config.yml ├── .github └── workflows │ └── main.yml ├── .travis.yml ├── LICENCE.md ├── README.md └── appveyor.yml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/ci/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/ci/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/ci/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/ci/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/ci/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/ci/HEAD/appveyor.yml --------------------------------------------------------------------------------