forked from zokioki/fitbit_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated with details specific to this project, like coverage
- Loading branch information
1 parent
2ba5ae6
commit f2f249b
Showing
1 changed file
with
17 additions
and
32 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,32 @@ | ||
name: Main | ||
name: CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
vm-job: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ruby-version: | ||
- '3.0' | ||
- '3.1' | ||
- '3.2' | ||
- '3.3' | ||
- head | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby-version }} | ||
|
||
- uses: actions/cache@v3 | ||
with: | ||
path: vendor/bundle | ||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-gems- | ||
- name: Bundle Install | ||
run: | | ||
gem install bundler | ||
bundle install --jobs 4 --retry 3 | ||
- name: Run tests | ||
run: | | ||
COVERAGE=true bundle exec rspec | ||
- name: Upload coverage results | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: coverage-report-ruby-${{ matrix.ruby-version }} | ||
path: coverage | ||
- uses: actions/checkout@v3 | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby-version }} | ||
bundler-cache: true | ||
- name: Run tests | ||
run: COVERAGE=true bundle exec rspec | ||
- name: Upload coverage results | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: coverage-report-ruby-${{ matrix.ruby-version }} | ||
path: coverage |