]> git.openstreetmap.org Git - rails.git/blob - .github/workflows/tests.yml
Load note from edit link with remote control
[rails.git] / .github / workflows / tests.yml
1 name: Tests
2 on:
3   - push
4   - pull_request
5 concurrency:
6   group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
7   cancel-in-progress: true
8 jobs:
9   test:
10     name: Ubuntu ${{ matrix.ubuntu }}, Ruby ${{ matrix.ruby }}
11     strategy:
12       matrix:
13         ubuntu: [20.04]
14         ruby: [2.7, 3.0]
15     runs-on: ubuntu-${{ matrix.ubuntu }}
16     env:
17       RAILS_ENV: test
18       OPENSTREETMAP_MEMCACHE_SERVERS: 127.0.0.1
19     steps:
20     - name: Checkout source
21       uses: actions/checkout@v3
22     - name: Setup ruby
23       uses: ruby/setup-ruby@v1
24       with:
25         ruby-version: ${{ matrix.ruby }}
26         bundler-cache: true
27     - name: Cache node modules
28       uses: actions/cache@v3
29       with:
30         path: node_modules
31         key: yarn-ubuntu-${{ matrix.ubuntu }}-${{ hashFiles('yarn.lock') }}
32         restore-keys: |
33           yarn-ubuntu-${{ matrix.ubuntu }}-
34     - name: Install packages
35       run: |
36         sudo apt-get -yqq update
37         sudo apt-get -yqq install memcached libvips-dev
38     - name: Create database
39       run: |
40         sudo systemctl start postgresql
41         sudo -u postgres createuser -s $(id -un)
42         createdb openstreetmap
43         psql -c "CREATE EXTENSION btree_gist" openstreetmap
44         psql -f db/functions/functions.sql openstreetmap
45     - name: Configure rails
46       run: |
47         cp config/github.database.yml config/database.yml
48         cp config/example.storage.yml config/storage.yml
49         touch config/settings.local.yml
50     - name: Populate database
51       run: |
52         sed -f script/normalise-structure db/structure.sql > db/structure.expected
53         bundle exec rake db:migrate
54         sed -f script/normalise-structure db/structure.sql > db/structure.actual
55         diff -uw db/structure.expected db/structure.actual
56     - name: Export javascript strings
57       run: bundle exec rake i18n:js:export
58     - name: Install node modules
59       run: bundle exec rake yarn:install
60     - name: Run tests
61       run: bundle exec rails test:all
62     - name: Report completion to Coveralls
63       uses: coverallsapp/github-action@1.1.3
64       with:
65         github-token: ${{ secrets.github_token }}
66         flag-name: ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}
67         parallel: true
68   finish:
69     name: Finalise
70     needs: test
71     runs-on: ubuntu-latest
72     steps:
73     - name: Report completion to Coveralls
74       uses: coverallsapp/github-action@1.1.3
75       with:
76         github-token: ${{ secrets.github_token }}
77         parallel-finished: true