-
Notifications
You must be signed in to change notification settings - Fork 11
62 lines (60 loc) · 1.68 KB
/
Copy pathtest.yml
File metadata and controls
62 lines (60 loc) · 1.68 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Tests
on:
push:
branches: [ master, devel ]
paths:
- '!*.md'
- '*.gemspec'
- '**.rb'
- 'Rakefile'
- 'Gemfile'
- 'Gemfile.lock'
- 'bin/tetra'
- 'spec/'
- 'lib/template/bundled/'
- '.github/workflows/test.yml'
pull_request:
branches: [ master, devel ]
paths:
- '!*.md'
- '*.gemspec'
- '**.rb'
- 'Rakefile'
- 'Gemfile'
- 'Gemfile.lock'
- 'bin/tetra'
- 'spec/'
- 'lib/template/bundled/'
- '.github/workflows/test.yml'
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: ['3.4', '4.0']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Ruby
uses: ruby/setup-ruby@80740b3b13bf9857e28854481ca95a84e78a2bdf # v1.284.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install dependencies
run: bundle install
- name: git
run: |
git config --global user.name "GitHub Actions Bot"
git config --global user.email "<>"
- name: Run tests and collect coverage
run: |
ruby --version
bundle exec rake
- name: Upload coverage to Codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage