easy-jsonapi 1.0.7 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f068c7e615a06af4b308f446745623cb7da1800c2bd795ef7dcd9bf5ba4f689c
4
- data.tar.gz: 1105e6c8ad9d9844c62a14ae7e21ed019ceb72a9b9fb499be974112048090061
3
+ metadata.gz: c90283db82a94130cda1e7ad2fa246b8378d0979ee518a7ab40d983bd70ae7ea
4
+ data.tar.gz: b92a320158f7f4219e3111dad359831981f7986588f2b25554ace0629a2134a2
5
5
  SHA512:
6
- metadata.gz: 52d519c1b8df1c3254620583130b8aab22206eb48c999fe3f7cd27dfc2d25c5eb91874d09aee23b96870fe147b89b5198b5f1526857966572130b93f618655e0
7
- data.tar.gz: 64e42ef8deda94c76a74bfc2fc6b46fc391570e30d472a86bbfdae188230c9c3e52fe3e24b56d4e4129faa9792103efb7d50049f49530b242257922ac1667dba
6
+ metadata.gz: de2b430fe4919324a22db93273a8ed8ed205e56a8273ed70573c6f01fb0a4668408665f658c5eabfc7e3970f9d80898537d12bfb83d69c2c1591a92ac5a2efea
7
+ data.tar.gz: 8706463dc4c476ecc9b4df694c421370e84ca4b5e19e405c9cc4bb8369b8876e91259b611ad8b0a082ccd63ac74293709af4757153e26d9d2930fbb2e2baa3a4
@@ -7,23 +7,20 @@ on:
7
7
  jobs:
8
8
  test:
9
9
  name: Test
10
- runs-on: ubuntu-latest
11
10
  strategy:
12
11
  matrix:
13
- ruby-version: ['2.5', '2.6', '2.7', '3.0']
12
+ os: [ubuntu-latest, macos-latest]
13
+ ruby: ['2.5', '2.6', '2.7', '3.0']
14
+ runs-on: ${{ matrix.os }}
14
15
 
15
16
  steps:
16
17
  - uses: actions/checkout@master
17
-
18
- - name: Set up Ruby
19
- uses: actions/setup-ruby@v1
18
+ - uses: ruby/setup-ruby@v1
20
19
  with:
21
- ruby-version: ${{ matrix.ruby-version }}
22
-
23
- - name: Run test cases
24
- run: |
20
+ ruby-version: ${{ matrix.ruby }}
21
+ - run: |
25
22
  gem install bundler
26
- bundler install
23
+ bundle install
27
24
  bundle exec rspec
28
25
  bash <(curl -s https://codecov.io/bash)
29
26
  env:
@@ -16,7 +16,7 @@ jobs:
16
16
  - name: Set up Ruby
17
17
  uses: ruby/setup-ruby@v1
18
18
  with:
19
- ruby-version: 3.0.0
19
+ ruby-version: 3.0.1
20
20
 
21
21
  - name: Build gem
22
22
  run: |
@@ -51,7 +51,7 @@ jobs:
51
51
  env:
52
52
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
53
53
  with:
54
- tag_name: 1.0.7
55
- release_name: Release 1.0.7
54
+ tag_name: 1.0.11 # update this to release
55
+ release_name: Release 1.0.11 # update this to release
56
56
  draft: false
57
57
  prerelease: false