build(deps): bump prost from 0.12.6 to 0.13.3 in /src/rust/sumologic-mock #1332
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 | |
- 'release-v[0-9]+.[0-9]+' | |
jobs: | |
markdownlint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
- name: Install markdownlint | |
run: gem install mdl | |
- name: Check markdown files with markdownlint | |
run: make markdownlint | |
test-sumologic-mock: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- name: Build Sumo Logic Mock | |
working-directory: src/rust/sumologic-mock/ | |
run: cargo rustc -- -D warnings | |
- name: Check sumologic-mock formatting | |
working-directory: src/rust/sumologic-mock/ | |
run: make check-rustfmt | |
- name: Test sumologic-mock | |
working-directory: src/rust/sumologic-mock/ | |
run: make test | |
build-image: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build kubernetes-tools image | |
run: make build-image | |
- name: Test kubernetes-tools image | |
run: make test-image | |
test-update-collection-v3: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: Build update-collection-v3 | |
run: make build-update-collection-v3 | |
- name: Test update-collection-v3 | |
run: make test-update-collection-v3 |