Skip to content

Commit

Permalink
Merge ad58e73 into 6b18926
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzedge committed May 9, 2023
2 parents 6b18926 + ad58e73 commit e7a1ac9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: CodeQL
name: codeql

on:
push:
Expand All @@ -23,7 +23,7 @@ on:

jobs:
analyze:
name: Analyze
name: analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
permissions:
actions: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Expand Up @@ -4,7 +4,7 @@
#
# Source repository: https://github.com/actions/dependency-review-action
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
name: Dependency Review
name: dependency-review
on:
pull_request:
branches:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ruby.yml
@@ -1,4 +1,4 @@
name: Ruby
name: build

on:
push:
Expand All @@ -16,14 +16,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Lint
- name: Run rubocop
run: bundle exec rubocop
test:
spec:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -54,21 +54,21 @@ jobs:
- 2.7.0
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
- name: Run rspec
run: bundle exec rspec
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Run tests and report test coverage
- name: Report rspec test coverage to coveralls.io
run: COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }} bundle exec rspec

0 comments on commit e7a1ac9

Please sign in to comment.