Skip to content

Commit

Permalink
Merge 2ea9014 into e27de34
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Nov 16, 2020
2 parents e27de34 + 2ea9014 commit ac3aebb
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Tests

on:
pull_request:
branches:
- master
paths-ignore:
- 'README.md'
push:
branches:
- master
paths-ignore:
- 'README.md'

jobs:
unit_tests:
name: Unit Tests
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
strategy:
fail-fast: false
matrix:
os:
- ubuntu
ruby:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
allow_failures:
- false
include:
- os: ubuntu
ruby: ruby-head
allow_failures: true
env:
BUNDLE_PATH: "./vendor/bundle"
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ github.ref }}-${{ github.sha }}-v2
restore-keys: |
${{ runner.os }}-gems--${{ matrix.ruby }}-${{ github.ref }}-
${{ runner.os }}-gems--${{ matrix.ruby }}-
- name: Bundle Install
run: |
bundle install --jobs 4 --retry 3
- name: Test
run: COVERAGE=true bundle exec rspec || $ALLOW_FAILURES

0 comments on commit ac3aebb

Please sign in to comment.