File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Main
2
2
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 :
3
10
push :
4
11
branches :
5
12
- main
20
27
- " 3.0"
21
28
- " 3.1"
22
29
- " 3.2"
30
+ - " 3.3"
23
31
24
32
steps :
25
33
- name : Checkout code
36
44
- name : Rake
37
45
run : bundle exec rake
38
46
39
- - uses : codecov/codecov-action@v3
47
+ - uses : codecov/codecov-action@v4
40
48
41
49
lint :
42
50
runs-on : ubuntu-latest
49
57
- name : Setup Ruby
50
58
uses : ruby/setup-ruby@v1
51
59
with :
52
- ruby-version : " 3.2 "
60
+ ruby-version : " 3.3 "
53
61
bundler-cache : true
54
62
55
63
- name : standardrb
You can’t perform that action at this time.
0 commit comments