Bump thiserror from 1.0.67 to 2.0.0 #4356
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: Integration Tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
- cron: '21 2 * * 1-5' # every weekday at 2:21 AM UTC | |
env: | |
GITHUB_REF: ${{ github.ref }} | |
jobs: | |
integration: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Config cargo | |
run: echo -e "$CARGO_CONFIG_TOML_BREEZ" > .cargo/config.toml | |
env: | |
CARGO_CONFIG_TOML_BREEZ: ${{ secrets.CARGO_CONFIG_TOML_BREEZ }} | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2.7.0 | |
- name: Run integration tests | |
run: make integrationtests |