]> git.openstreetmap.org Git - rails.git/blobdiff - .github/workflows/docker.yml
Bump actions/checkout from 3 to 4
[rails.git] / .github / workflows / docker.yml
index 6f88614ab3cd93eda11c4e4edabb07524285c046..df617d4fbf2cd992db2842f9b7118b8a25df0714 100644 (file)
@@ -3,15 +3,15 @@ on:
   - push
   - pull_request
 concurrency:
-  group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
+  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
+      uses: actions/checkout@v4
     - name: Poke config
       run: |
         cp config/example.storage.yml config/storage.yml
@@ -28,6 +28,7 @@ jobs:
       run: |
         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: |