]> git.openstreetmap.org Git - rails.git/blobdiff - .github/workflows/docker.yml
Bump coverallsapp/github-action from 2.2.0 to 2.2.1
[rails.git] / .github / workflows / docker.yml
index 29ef1e8b807cae238f7ac82779d20913e5bf8f78..74d03b31c982c3e90ff2bb1d55c3aa05209312e0 100644 (file)
@@ -2,10 +2,13 @@ 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
+    runs-on: ubuntu-22.04
     steps:
     - name: Checkout source
       uses: actions/checkout@v3
@@ -23,8 +26,9 @@ jobs:
         sleep 15 # let the DB warm up a little
     - name: Prepare Database
       run: |
-        docker-compose run --rm web rake db:migrate
-        docker-compose run web bundle exec rake i18n:js:export
+        docker-compose run --rm web bundle exec rails db:migrate
+        docker-compose run --rm web bundle exec rails i18n:js:export
+        docker-compose run --rm web bundle exec rails assets:precompile
         docker-compose run --rm web osmosis --rx docker/null-island.osm.xml --wd host=db database=openstreetmap user=openstreetmap password=openstreetmap validateSchemaVersion=no
     - name: Test Basic Website
       run: |