fix(deps): update rust crate if-addrs to 0.12.0 #47
Workflow file for this run
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: "CI Build" | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
# On main, we want all builds to complete even if merging happens faster to make it easier to discover at which point something broke. | |
group: ${{ github.ref == 'refs/heads/main' && format('ci-main-{0}', github.sha) || format('ci-{0}', github.ref) }} | |
jobs: | |
build-tauri: | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-20.04, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- name: install dependencies (ubuntu only) | |
if: contains(matrix.platform, 'ubuntu') | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf | |
- name: Run rustfmt and fail if any warnings | |
run: | | |
cargo fmt -- --check | |
cd src-tauri | |
cargo fmt -- --check | |
- name: Run clippy and fail if any warnings | |
run: | | |
cargo clippy -- -D warnings | |
cd src-tauri | |
cargo clippy -- -D warnings | |
- name: install frontend dependencies | |
run: | | |
rustup target add wasm32-unknown-unknown | |
- name: cached install trunk | |
uses: taiki-e/cache-cargo-install-action@v1.3.0 | |
with: | |
tool: trunk | |
locked: true | |
- name: cached install tauri-cli | |
uses: taiki-e/cache-cargo-install-action@v1.3.0 | |
with: | |
tool: tauri-cli | |
locked: true | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} |