Skip to content

Commit c6bc8dc

Browse files
committed
Add gitflows to repo
Signed-off-by: Jonathan Moraes <[email protected]>
1 parent 99d59ea commit c6bc8dc

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'github-actions'
4+
directory: '/'
5+
schedule:
6+
interval: 'weekly'

.github/workflows/linux.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: linux
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
jobs:
8+
build:
9+
runs-on: ${{ matrix.os }}
10+
continue-on-error: ${{ matrix.experimental }}
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
ruby: [ '3.2', '3.1', '3.0' ]
15+
os:
16+
- ubuntu-latest
17+
experimental: [false]
18+
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: ruby/setup-ruby@v1
22+
with:
23+
ruby-version: ${{ matrix.ruby }}
24+
- name: unit testing
25+
env:
26+
CI: true
27+
run: |
28+
gem install bundler rake
29+
bundle install --jobs 4 --retry 3
30+
bundle exec rake spec

fluent-plugin-openlineage-0.1.1.gem

38 KB
Binary file not shown.

0 commit comments

Comments
 (0)