Skip to content

Try to use the map fix used at decidim.swiss #386

Try to use the map fix used at decidim.swiss

Try to use the map fix used at decidim.swiss #386

Workflow file for this run

---
name: 'Rails Unit Tests'
"on":
push:
branches:
- 'master'
paths-ignore:
- 'doc/**'
- '**.md'
pull_request:
branches:
- 'master'
paths-ignore:
- 'doc/**'
- '**.md'
jobs:
build:
runs-on: 'ubuntu-latest'
services:
postgres:
image: 'postgres:11.6-alpine'
env:
POSTGRES_PASSWORD: 'postgres'
ports: ['5432:5432']
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 10s
--health-retries 10
memcached:
image: 'memcached'
ports: ['11211:11211']
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Set up Ruby'
uses: ruby/setup-ruby@v1
- name: Install required package
run: |
sudo apt-get install libpq-dev
- name: Cache gems
uses: actions/cache@v3
with:
path: vendor/bundle
key: ruby-${{ matrix.ruby }}-gem-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
ruby-${{ matrix.ruby }}-gem-
- name: 'Build and test with Rake'
env:
RAILS_TEST_DB_USERNAME: 'postgres'
RAILS_TEST_DB_PASSWORD: 'postgres'
RAILS_ENV: 'test'
run: |
gem install bundler --version '~> 2'
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundle exec rails db:create
bundle exec rails db:migrate
bundle exec rails test
...

Check failure on line 66 in .github/workflows/rails-tests.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/rails-tests.yaml

Invalid workflow file

You have an error in your yaml syntax on line 66