build(deps): bump async-trait from 0.1.81 to 0.1.83 #1119
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: CI | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'COPYRIGHT' | |
- 'LICENSE**' | |
- 'design/**' | |
branches: [develop] | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'COPYRIGHT' | |
- 'LICENSE**' | |
- 'design/**' | |
branches: [develop] | |
jobs: | |
build-binary: | |
name: build | |
runs-on: | |
group: bottlerocket | |
labels: bottlerocket_ubuntu-latest_8-core | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup update stable | |
- run: make build | |
- name: Ensure git is clean | |
shell: bash | |
run: | | |
git --no-pager diff | |
test -z "$(git status --untracked-files=all --porcelain)" | |
build-container: | |
name: brupop-image | |
runs-on: | |
group: bottlerocket | |
labels: bottlerocket_ubuntu-latest_8-core | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make brupop-image | |
- name: Ensure git is clean | |
shell: bash | |
run: | | |
git --no-pager diff | |
test -z "$(git status --untracked-files=all --porcelain)" |