Skip to content

Commit bd7a70f

Browse files
committed
Remove bullshit COC and setup github actions
1 parent dc63bff commit bd7a70f

File tree

5 files changed

+23
-112
lines changed

5 files changed

+23
-112
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
lint:
8+
runs-on: ubuntu-24.04
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
13+
- name: Set up Ruby
14+
uses: ruby/setup-ruby@v1
15+
with:
16+
ruby-version: 3.4
17+
bundler-cache: true
18+
19+
- name: Setup env variables
20+
run: cp .example.env .env
21+
22+
- name: Tests
23+
run: bin/check

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 74 deletions
This file was deleted.

LICENSE.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
Ruby library to invoke Heroku Postgres APIs.
88
An extension to the official [Platform API](https://github.com/heroku/platform-api) gem to introduce the missing APIs for Postgres.
99

10-
[![Build Status](https://travis-ci.org/coorasse/heroku-api-postgres.svg?branch=master)](https://travis-ci.org/coorasse/heroku-api-postgres)
11-
[![Maintainability](https://api.codeclimate.com/v1/badges/4eead5d8263c37498953/maintainability)](https://codeclimate.com/github/coorasse/heroku-api-postgres/maintainability)
12-
1310
**This gem is not officialy supported**. We use the same APIs that the offical Heroku Toolbelt uses,
1411
therefore is unrealistic that a breaking change in the APIs would break it, since it means it would break
1512
both this gem and the official Heroku CLI.
@@ -209,14 +206,7 @@ and push the `.gem` file to [rubygems.org](https://rubygems.org).
209206
## Contributing
210207

211208
Bug reports and pull requests are welcome on GitHub at https://github.com/coorasse/heroku-api-postgres.
212-
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
213-
the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
214209

215210
## License
216211

217212
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
218-
219-
## Code of Conduct
220-
221-
Everyone interacting in the `Heroku::Api::Postgres` project’s codebases, issue trackers, chat rooms and mailing lists is
222-
expected to follow the [code of conduct](https://github.com/coorasse/heroku-api-postgres/blob/master/CODE_OF_CONDUCT.md).

0 commit comments

Comments
 (0)