-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate the badge from CircleCI to GitHub Actions
Signed-off-by: Akihiko Odaki <[email protected]>
- Loading branch information
1 parent
4a74f9d
commit c29d517
Showing
5 changed files
with
101 additions
and
113 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 |
---|---|---|
@@ -0,0 +1,100 @@ | ||
name: Check | ||
|
||
on: | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'ruby' ] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
|
||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
|
||
rspec: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Update Ubuntu package repository | ||
run: sudo apt-get update | ||
- name: Setup sqlite-devel | ||
run: sudo apt-get -y install libsqlite3-dev | ||
- name: Setup libcurl-devel | ||
run: sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev | ||
|
||
- name: Set up Ruby 3.1.4 | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.1.4 | ||
bundler-cache: false | ||
|
||
- name: Install dependencies | ||
run: bundle install | ||
|
||
- name: RSpec run | ||
run: bundle exec rspec | ||
|
||
rubocop: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Update Ubuntu package repository | ||
run: sudo apt-get update | ||
- name: Setup sqlite-devel | ||
run: sudo apt-get -y install libsqlite3-dev | ||
- name: Setup libcurl-devel | ||
run: sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev | ||
|
||
- name: Set up Ruby 3.1.4 | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.1.4 | ||
bundler-cache: false | ||
|
||
- name: Install dependencies | ||
run: bundle install | ||
|
||
- name: RuboCop run | ||
run: | | ||
bash -c " | ||
bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif | ||
[[ $? -ne 2 ]] | ||
" | ||
- name: Upload Sarif output | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: rubocop.sarif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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