]> git.openstreetmap.org Git - rails.git/blobdiff - .github/workflows/docker.yml
Merge remote-tracking branch 'upstream/pull/3573'
[rails.git] / .github / workflows / docker.yml
index 852e62cf6a0173524c7e6d2de57eaa2739503932..cc2420730faea28c41ed593ef5f71ea48b83e78a 100644 (file)
@@ -2,13 +2,16 @@ name: Docker
 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
@@ -33,4 +36,5 @@ jobs:
         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