-
Notifications
You must be signed in to change notification settings - Fork 29
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
Ben Roberts
committed
May 17, 2022
1 parent
a1e6840
commit 35f48b2
Showing
3 changed files
with
41 additions
and
20 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,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "bundler" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
assignees: | ||
- "dissolve" |
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,33 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
jobs: | ||
analyze: | ||
name: Analyze | ||
permissions: | ||
contents: read | ||
security-events: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ruby | ||
- uses: github/codeql-action/analyze@v2 | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
env: | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# See: https://github.com/actions/runner/issues/849 | ||
ruby: [2.4, 2.5, 2.6, 2.7, "3.0", 3.1] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
ruby-version: ${{ matrix.ruby }} | ||
- run: bundle exec rspec --format RSpec::Github::Formatter | ||
- uses: paambaati/[email protected] |
This file was deleted.
Oops, something went wrong.