Merge pull request #106 from ginglis13/image-verification-plugins #361
This file contains hidden or 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: Rust | |
| on: | |
| pull_request: | |
| branches: "*" | |
| paths-ignore: | |
| - '**.md' | |
| - 'COPYRIGHT' | |
| - 'LICENSE**' | |
| push: | |
| branches: [develop] | |
| paths-ignore: | |
| - '**.md' | |
| - 'COPYRIGHT' | |
| - 'LICENSE**' | |
| jobs: | |
| build: | |
| if: github.repository == 'bottlerocket-os/bottlerocket-settings-sdk' | |
| runs-on: | |
| group: bottlerocket | |
| labels: bottlerocket_ubuntu-latest_8-core | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: rustup update stable | |
| - run: cargo install cargo-deny | |
| - run: make build |