1
0
mirror of https://github.com/seejohnrun/haste-client.git synced 2026-01-28 11:57:10 +00:00

[UTI-2583] Adapt haste-client to the new API usage rules (#57)

This commit is contained in:
Yusuf Yilmaz
2023-01-31 04:04:28 +03:00
committed by GitHub
parent e8912c3456
commit a877692ab3
8 changed files with 177 additions and 89 deletions

28
.github/workflows/unit.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Unit
on:
push:
branches: [master]
pull_request:
branches:
- UTI-2583--adapt-haste-client-to-new-api
jobs:
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: 3.0.0
- name: Run bundle install
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Build and test with rspec
run: bundle exec rspec spec