Updates the requirements on [actions/checkout](https://github.com/actions/checkout) to permit the latest version.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](5a4ac9002d
)
Signed-off-by: dependabot[bot] <support@github.com>
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
name: Docker
|
|
on:
|
|
- push
|
|
- pull_request
|
|
jobs:
|
|
test:
|
|
name: Docker
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout source
|
|
uses: actions/checkout@v2.3.4
|
|
- name: Poke config
|
|
run: |
|
|
cp config/example.storage.yml config/storage.yml
|
|
cp config/docker.database.yml config/database.yml
|
|
touch config/settings.local.yml
|
|
- name: Build Docker Image
|
|
run: |
|
|
docker-compose build
|
|
- name: Start Docker-Compose
|
|
run: |
|
|
docker-compose up -d
|
|
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 osmosis --rx docker/null-island.osm.xml --wd host=db database=openstreetmap user=openstreetmap password=openstreetmap validateSchemaVersion=no
|
|
- name: Test Basic Website
|
|
run: |
|
|
curl -siL http://127.0.0.1:3000 | egrep '^HTTP/1.1 200 OK'
|
|
curl -siL http://127.0.0.1:3000 | grep 'OpenStreetMap is the free wiki world map'
|
|
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
|