Skip to content

add bottlerocket tools to twoliter binary #82

add bottlerocket tools to twoliter binary

add bottlerocket tools to twoliter binary #82

Workflow file for this run

name: Rust
on:
# triggers when a PR is posted
pull_request:
branches:
- "*"
paths-ignore:
- "**.md"
- "**.plantuml"
- "**.svg"
# triggers when a PR is merged
push:
branches: [develop]
paths-ignore:
- "**.md"
- "**.plantuml"
- "**.svg"
jobs:
build:
runs-on:
group: bottlerocket
labels: bottlerocket_ubuntu-latest_16-core
env:
# This trick allows us to use unstable features (-Z bindeps), without installing a nightly
# compiler.
RUSTC_BOOTSTRAP: "1"
steps:
- uses: actions/checkout@v3
- run: cargo build --locked
- run: cargo test --locked
- run: cargo fmt -- --check
- run: cargo clippy --locked -- -D warnings --no-deps