fix(ci): install protoc via apt, drop setup-protoc action (#12) #73
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| rust: | |
| name: Rust (${{ matrix.check }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - check: fmt | |
| command: cargo fmt --all -- --check | |
| - check: clippy | |
| command: cargo clippy --workspace -- -D warnings | |
| - check: test | |
| command: cargo test --workspace | |
| - check: audit | |
| command: cargo install cargo-audit && cargo audit | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install protoc | |
| run: sudo apt-get update && sudo apt-get install -y protobuf-compiler | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: ${{ matrix.check }} | |
| run: ${{ matrix.command }} | |
| contracts: | |
| name: Solidity | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: contracts | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: foundry-rs/foundry-toolchain@v1 | |
| - name: Install dependencies | |
| run: forge soldeer update | |
| - name: Build | |
| run: forge build | |
| - name: Test | |
| run: forge test |