Skip to content

Remove simplecov and codecov. #22

Remove simplecov and codecov.

Remove simplecov and codecov. #22

Workflow file for this run

name: build
on: push
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.2
gemfile: Gemfile
postgres: 10
- ruby: 3.2
gemfile: gemfiles/Gemfile-7-0
postgres: 10
- ruby: 2.7
gemfile: gemfiles/Gemfile-6-1
postgres: 10
- ruby: 2.6
gemfile: gemfiles/Gemfile-6-0
postgres: 10
- ruby: 2.6
gemfile: gemfiles/Gemfile-5-2
postgres: 10
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
USE_OFFICIAL_GEM_SOURCE: 1
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: ankane/setup-postgres@v1
with:
postgres-version: ${{ matrix.postgres }}
- run: createdb action-store-test
- run: bundle exec rails test