forked from kyanny/compare_linker
-
Notifications
You must be signed in to change notification settings - Fork 10
48 lines (46 loc) · 1.08 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Test
on:
push:
branches:
- main
pull_request:
jobs:
actionlint:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
checks: write
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Run actionlint
uses: reviewdog/action-actionlint@fd627997c9688c2f39e13917aed23873c031b834 # v1.48.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
rspec:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
ruby-version:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run rspec
run: bundle exec rake spec
pushover:
name: pushover if failure
if: github.ref_name == github.event.repository.default_branch && failure()
needs: [actionlint, rspec]
uses: ./.github/workflows/pushover.yml