Skip to content

Commit

Permalink
Add CI run on Github-Actions
Browse files Browse the repository at this point in the history
.. using the oldest and newest supported ruby version.
  • Loading branch information
larskanis committed Feb 27, 2023
1 parent 939045d commit 2288eb4
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: ci
on:
push:
pull_request:

jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ ubuntu, macos, windows ]
ruby: [ '2.5', ruby-head ]
runs-on: ${{ matrix.os }}-latest
env:
PGSERVICE: postgres

steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: ikalnytskyi/action-setup-postgres@v4

- run: bundle install
- run: createdb activestorage_pglo_test

# For some reason the db migrations needs to be executed explicitly on Windows
- name: Copy and run migrations on Windows
if: matrix.os == 'windows'
run: |
ridk exec cp -rv db/migrate test/dummy/db/
rake -f test/dummy/Rakefile active_storage:install db:migrate RAILS_ENV=test
- run: bundle exec rake test
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ gem 'image_processing', '~> 1.2'

# To use a debugger
# gem 'byebug', group: [:development, :test]

# Required on Windows only
gem 'tzinfo-data'

0 comments on commit 2288eb4

Please sign in to comment.