-
Notifications
You must be signed in to change notification settings - Fork 2
72 lines (58 loc) · 1.44 KB
/
build.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: build
on: [push, create, pull_request]
jobs:
build_matrix:
strategy:
matrix:
os:
- "ubuntu-20.04"
- "ubuntu-22.04"
- "ubuntu-latest"
ruby:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
runs-on: ${{ matrix.os }}
steps:
# Environment setup
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rubocop
run: |
bundle exec rubocop --display-cop-names
- name: Run tests
run: |
bundle exec rspec
build:
needs: [build_matrix]
runs-on: ubuntu-20.04
steps:
- name: Dummy for branch status checks
run: |
echo "build complete"
release:
runs-on: ubuntu-20.04
needs:
- build
if: github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
- name: Create credentials
run: |
mkdir -p ~/.gem
cat << EOF > ~/.gem/credentials
---
:rubygems_api_key: ${{ secrets.RUBYGEMS_TOKEN }}
EOF
chmod 0600 /home/runner/.gem/credentials
- name: Publish gem
run: |
gem build puma-plugin-telemetry.gemspec
gem push puma-plugin-telemetry-*.gem