Skip to content

Commit

Permalink
* Run CI regularly & add ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed May 12, 2024
1 parent 610fe6e commit 34ca661
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: Main
on:
schedule:
# Run on the first day of every month
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
- cron: '0 0 1 * *'
# Allow running manually
# For more details: https://docs.github.com/en/actions/using-workflows/manually-running-a-workflow?tool=webui
workflow_dispatch:
push:
branches:
- main
Expand All @@ -21,6 +28,7 @@ jobs:
- "3.0"
- "3.1"
- "3.2"
- "3.3"

steps:
- name: Checkout code
Expand Down Expand Up @@ -50,7 +58,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.3"
bundler-cache: true

- name: standardrb
Expand Down
7 changes: 2 additions & 5 deletions .standard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
ignore:
- 'lib/roadie/rails/mailer.rb':
- Style/ArgumentsForwarding
- 'lib/roadie/rails/options.rb':
- Performance/StringIdentifierArgument
ruby_version: 2.6
parallel: true

0 comments on commit 34ca661

Please sign in to comment.