-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Martin Fenner
committed
Mar 30, 2021
1 parent
e20ff49
commit f6a8bcf
Showing
1 changed file
with
11 additions
and
11 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 |
---|---|---|
|
@@ -50,12 +50,12 @@ jobs: | |
uses: actions/setup-ruby@v1 | ||
with: | ||
ruby-version: '2.6.x' | ||
# - uses: actions/cache@v2 | ||
# with: | ||
# path: vendor/bundle | ||
# key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | ||
# restore-keys: | | ||
# ${{ runner.os }}-gems- | ||
- uses: actions/cache@v2 | ||
with: | ||
path: vendor/bundle | ||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-gems- | ||
- name: Install | ||
env: | ||
MYSQL_PORT: ${{ job.services.mysql.ports[3306] }} | ||
|
@@ -76,12 +76,12 @@ jobs: | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
run: | | ||
bundle exec rubocop | ||
# bundle exec rspec | ||
bundle exec rspec | ||
echo $? | ||
# - name: Publish code coverage | ||
# uses: paambaati/[email protected] | ||
# env: | ||
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
- name: Publish code coverage | ||
uses: paambaati/[email protected] | ||
env: | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
|
||
build: | ||
needs: test | ||
|