Merge pull request #21 from Fryguy/update_gha_actions_checkout #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: | |
- '2.5' | |
- '2.6' | |
- '2.7' | |
- '3.0' | |
services: | |
postgres: | |
image: manageiq/postgresql:13 | |
env: | |
POSTGRESQL_USER: root | |
POSTGRESQL_PASSWORD: smartvm | |
POSTGRESQL_DATABASE: vmdb_production | |
options: >- | |
--name postgres | |
--volume /tmp/postgresql-cfg/:/opt/app-root/src/postgresql-cfg/ | |
--health-cmd pg_isready | |
--health-interval 2s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Override postgres settings | |
run: | | |
sudo chown -R $(id -u):$(id -g) /tmp/postgresql-cfg | |
cp -rf .github/ci/postgresql-cfg/* /tmp/postgresql-cfg | |
/usr/bin/docker run --rm -v "/var/run/docker.sock":"/var/run/docker.sock" docker restart postgres | |
until [ "`/usr/bin/docker inspect -f {{.State.Health.Status}} postgres`" == "healthy" ]; do sleep 0.5; done | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
timeout-minutes: 30 | |
- name: Run tests | |
run: bundle exec rake | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
- if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7' }} | |
name: Report code coverage | |
continue-on-error: true | |
uses: paambaati/codeclimate-action@v5 | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} |