Continuous Integration #168
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: Continuous Integration | |
on: | |
push: | |
paths-ignore: | |
- "**/README.md" | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: "50 7 * * *" | |
env: | |
CARGO_TERM_COLOR: always | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
rust-checks: | |
name: Rust checks | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
action: | |
- command: build | |
args: --release | |
- command: fmt | |
args: --all -- --check --color always | |
- command: clippy | |
args: --all-targets --all-features --workspace -- -D warnings | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
components: rust-src,clippy,rustfmt | |
- name: Install ldproxy | |
run: | | |
curl -L "https://github.com/esp-rs/embuild/releases/latest/download/ldproxy-x86_64-unknown-linux-gnu.zip" -o "${HOME}/.cargo/bin/ldproxy.zip" && \ | |
unzip "${HOME}/.cargo/bin/ldproxy.zip" -d "${HOME}/.cargo/bin/" && \ | |
rm "${HOME}/.cargo/bin/ldproxy.zip" && \ | |
chmod u+x "${HOME}/.cargo/bin/ldproxy" | |
- name: Enable caching | |
uses: Swatinem/rust-cache@v2 | |
- name: Run command | |
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} | |
- name: Wokwi CI check | |
if: matrix.action.command == 'build' | |
uses: wokwi/wokwi-ci-action@v1 | |
with: | |
token: ${{ secrets.WOKWI_CLI_TOKEN }} | |
timeout: 10000 | |
fail_text: 'Mismatch detected for' | |
expect_text: 'Returned from app_main()' |