Skip to content

Commit cdbc9f2

Browse files
committed
* Update CI to run monthly, update codecov/codecov-action, add Ruby 3.3 to matrix
1 parent b8631b7 commit cdbc9f2

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/main.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
name: Main
22
on:
3+
schedule:
4+
# Run on the first day of every month
5+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
6+
- cron: '0 0 1 * *'
7+
# Allow running manually
8+
# For more details: https://docs.github.com/en/actions/using-workflows/manually-running-a-workflow?tool=webui
9+
workflow_dispatch:
310
push:
411
branches:
512
- main
@@ -20,6 +27,7 @@ jobs:
2027
- "3.0"
2128
- "3.1"
2229
- "3.2"
30+
- "3.3"
2331

2432
steps:
2533
- name: Checkout code
@@ -36,7 +44,7 @@ jobs:
3644
- name: Rake
3745
run: bundle exec rake
3846

39-
- uses: codecov/codecov-action@v3
47+
- uses: codecov/codecov-action@v4
4048

4149
lint:
4250
runs-on: ubuntu-latest
@@ -49,7 +57,7 @@ jobs:
4957
- name: Setup Ruby
5058
uses: ruby/setup-ruby@v1
5159
with:
52-
ruby-version: "3.2"
60+
ruby-version: "3.3"
5361
bundler-cache: true
5462

5563
- name: standardrb

0 commit comments

Comments
 (0)