Adiciona o canal do Wilson Neto em Backend #76
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Github CI | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [2.6] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install bundler | |
run: gem install bundler | |
- name: Cache dependencies | |
uses: actions/cache@v1 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile') }}-${{ matrix.ruby }} | |
- name: Install dependencies | |
run: | | |
bundle install --jobs 4 --retry 3 | |
- name: Unit test with Rspec test suite | |
run: ruby readme_checker_test.rb |