Skip to content

Commit 9c79591

Browse files
committed
Reboot CI
1 parent 00a223f commit 9c79591

File tree

5 files changed

+69
-22
lines changed

5 files changed

+69
-22
lines changed

.circleci/config.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: protobuf_nested_struct_mutate
2+
on:
3+
workflow_dispatch:
4+
repository_dispatch:
5+
types:
6+
- script
7+
push:
8+
pull_request:
9+
types:
10+
- opened
11+
- reopened
12+
jobs:
13+
mutate:
14+
runs-on: ubuntu-latest
15+
timeout-minutes: 120
16+
steps:
17+
- uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
- run: test -e Gemfile.lock
21+
- uses: ruby/setup-ruby@v1
22+
with:
23+
ruby-version: ruby-3.4
24+
bundler-cache: true
25+
- run: bundle exec mutant run
26+
env:
27+
RUBYOPT: "--enable-frozen-string-literal"
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: protobu_nested_struct_test
2+
on:
3+
workflow_dispatch:
4+
repository_dispatch:
5+
types:
6+
- script
7+
push:
8+
pull_request:
9+
types:
10+
- opened
11+
- reopened
12+
jobs:
13+
test:
14+
runs-on: ubuntu-latest
15+
timeout-minutes: 120
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
ruby_version:
20+
[ruby-3.4, ruby-3.3, ruby-3.2, ruby-3.1, ruby-3.0, ruby-2.7]
21+
steps:
22+
- uses: actions/checkout@v4
23+
with:
24+
fetch-depth: 1
25+
- run: test -e Gemfile.lock
26+
- uses: ruby/setup-ruby@v1
27+
with:
28+
ruby-version: "${{ matrix.ruby_version }}"
29+
bundler-cache: true
30+
- run: bundle exec rspec
31+
env:
32+
RUBYOPT: "--enable-frozen-string-literal"

.mutant.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
usage: opensource
2+
integration:
3+
name: rspec
4+
includes:
5+
- lib
6+
requires:
7+
- protobuf_nested_struct
8+
matcher:
9+
subjects:
10+
- ProtobufNestedStruct*

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)