Update Rust crate tucana to 0.0.39 #194
Workflow file for this run
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: Build code0-flow crate | |
| on: | |
| push: | |
| jobs: | |
| crates: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup rust | |
| run: rustup update --no-self-update stable | |
| - name: Install protoc | |
| run: curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v28.0-rc1/protoc-28.0-rc-1-linux-x86_64.zip && unzip protoc-28.0-rc-1-linux-x86_64.zip -d ${{ runner.temp }}/proto && chmod +x ${{ runner.temp }}/proto/bin/protoc && ${{ runner.temp }}/proto/bin/protoc --version | |
| - name: Build crate | |
| run: PATH=${{ runner.temp }}/proto/bin:$PATH cargo build | |
| env: | |
| RUST_BACKTRACE: 'full' | |
| - name: Run Tests | |
| run: PATH=${{ runner.temp }}/proto/bin:$PATH cargo test --features all | |
| env: | |
| RUST_BACKTRACE: 'full' | |
| - name: Package crate | |
| run: cargo package --allow-dirty |