diff options
| author | mo khan <mo.khan@gmail.com> | 2020-12-28 23:15:11 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-12-28 23:15:11 -0700 |
| commit | cd23bb8a43ba574b008df4ed587c0b1604a412cc (patch) | |
| tree | 92ab2891bfd4eb628085ad7db5030fb6e3248971 | |
| parent | af7b84d292d787ba2f16828847d4c2d974736978 (diff) | |
chore: add ruby 3.0 to build matrix
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60cfe6d..92d7955 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,14 +5,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: [ '2.5', '2.6', '2.7' ] + ruby: [ '2.5', '2.6', '2.7', '3.0' ] name: RSpec Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v2 with: lfs: true submodules: recursive - - uses: actions/setup-ruby@v1 + - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: setup |
