on:
- push
- pull_request
+concurrency:
+ group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
+ cancel-in-progress: true
jobs:
test:
name: Docker
runs-on: ubuntu-20.04
steps:
- name: Checkout source
- uses: actions/checkout@v1
+ uses: actions/checkout@v3
- name: Poke config
run: |
cp config/example.storage.yml config/storage.yml
curl -siL http://127.0.0.1:3000/api/0.6/node/1 | grep 'Null Island'
- name: Test Complete Suite
run: |
- docker-compose run --rm web bundle exec rails test:db
+ docker-compose run --rm web bundle exec rails db:test:prepare
+ docker-compose run --rm web bundle exec rails test:all