Skip to content

build(deps): bump serde_json from 1.0.100 to 1.0.102 in /src/rust/receiver-mock #955

build(deps): bump serde_json from 1.0.100 to 1.0.102 in /src/rust/receiver-mock

build(deps): bump serde_json from 1.0.100 to 1.0.102 in /src/rust/receiver-mock #955

Workflow file for this run

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@v3
- uses: actions/[email protected]
- name: Install markdownlint
run: gem install mdl
- name: Check markdown files with markdownlint
run: make markdownlint
test-receiver-mock:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/[email protected]
with:
toolchain: stable
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Build receiver-mock
working-directory: src/rust/receiver-mock/
run: cargo rustc -- -D warnings
- name: Check receiver-mock formatting
working-directory: src/rust/receiver-mock/
run: make check-rustfmt
- name: Test receiver-mock
working-directory: src/rust/receiver-mock/
run: make test
build-image:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- 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@v3
- uses: actions/setup-go@v4
with:
go-version: '1.18'
- name: Build update-collection-v3
run: make build-update-collection-v3
- name: Test update-collection-v3
run: make test-update-collection-v3