Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Hettie Street authored and Hettie Street committed Sep 20, 2022
1 parent 4514993 commit a38db33
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,40 @@
name: Ruby

name: Tests
on:
- pull_request

jobs:
test:
rspec:
strategy:
fail-fast: false
matrix:
ruby: ['2.7.6', '3.0.4', '3.1.2']

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: ${{ matrix.ruby }}

- name: Install dependencies
run: bundle install --jobs 4 --retry 3

- name: Run linter
run: bundle exec rubocop .

- name: Run tests
run: bundle exec rake

test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}

0 comments on commit a38db33

Please sign in to comment.