chore(deps-dev): bump mocha from 2.4.0 to 2.4.2 in /fluent-plugin-events #978
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PRs checks | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-fluent-plugin-datapoint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
ruby-version: '3.1' | |
- name: Install bundler | |
run: gem install bundler | |
- name: Test fluent-plugin-datapoint | |
run: make test-fluent-plugin-datapoint | |
test-fluent-plugin-enhance-k8s-metadata: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
ruby-version: '3.1' | |
- name: Install bundler | |
run: gem install bundler | |
- name: Test fluent-plugin-enhance-k8s-metadata | |
run: make test-fluent-plugin-enhance-k8s-metadata | |
test-fluent-plugin-events: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
ruby-version: '3.1' | |
- name: Install bundler | |
run: gem install bundler | |
- name: Test fluent-plugin-events | |
run: make test-fluent-plugin-events | |
test-fluent-plugin-kubernetes-metadata-filter: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
ruby-version: '3.1' | |
- name: Install bundler | |
run: gem install bundler | |
- name: Test fluent-plugin-kubernetes-metadata-filter | |
run: make test-fluent-plugin-kubernetes-metadata-filter | |
test-fluent-plugin-kubernetes-sumologic: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
ruby-version: '3.1' | |
- name: Install bundler | |
run: gem install bundler | |
- name: Test fluent-plugin-kubernetes-sumologic | |
run: make test-fluent-plugin-kubernetes-sumologic | |
test-fluent-plugin-prometheus-format: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
ruby-version: '3.1' | |
- name: Install bundler | |
run: gem install bundler | |
- name: Test fluent-plugin-prometheus-format | |
run: make test-fluent-plugin-prometheus-format | |
test-fluent-plugin-protobuf: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
ruby-version: '3.1' | |
- name: Install bundler | |
run: gem install bundler | |
- name: Test fluent-plugin-protobuf | |
run: make test-fluent-plugin-protobuf | |
image-test-debian: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Debian image | |
run: make build | |
- name: Test Debian image | |
run: make image-test | |
image-test-alpine: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Alpine image | |
run: make build-alpine | |
- name: Test Alpine image | |
run: make image-test-alpine |