Skip to content

Commit e33088d

Browse files
committed
switch to github workflows for ci testing
1 parent cd8553e commit e33088d

File tree

2 files changed

+15
-19
lines changed

2 files changed

+15
-19
lines changed

.circleci/config.yml

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

.github/workflows/dockerpush.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Docker
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- name: Run tests
13+
run: |
14+
docker-compose run --rm test bundle exec rake db:schema:load
15+
docker-compose run --rm test bundle exec rspec spec/usage

0 commit comments

Comments
 (0)