We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8553e commit e33088dCopy full SHA for e33088d
.circleci/config.yml
.github/workflows/dockerpush.yml
@@ -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