propagate docker build error up (#55) #128
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: Rust | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Setup Protobuf Compiler" | |
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler | |
- name: "Fmt" | |
run: | | |
.github/scripts/cargo-fmt.sh | |
- name: "Clippy" | |
run: | | |
.github/scripts/cargo-clippy.sh | |
- name: "Test" | |
run: | | |
.github/scripts/cargo-test.sh |