chore: bump desktop app version to 0.1.2
#63
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "**" | |
env: | |
CARGO_TERM_COLOR: always | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
clippy: | |
name: Clippy check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Tauri dependencies | |
run: >- | |
sudo apt-get update && | |
sudo apt-get install -y | |
libgtk-3-dev | |
libayatana-appindicator3-dev | |
libwebkit2gtk-4.0-dev | |
webkit2gtk-driver | |
xvfb | |
- name: Install nightly rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
targets: wasm32-unknown-unknown | |
components: clippy | |
# we need trunk to build UI which is used in tauri`build.rs` | |
- uses: cargo-bins/cargo-binstall@main | |
- name: Download and install Trunk binary | |
run: cargo binstall --no-confirm trunk | |
- name: Build with Trunk | |
run: trunk build | |
- name: Clippy check | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features --all-targets | |
fmt: | |
name: Rustfmt check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install nightly rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Run cargo fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: nightly | |
command: fmt | |
args: --all --check | |
prlint: | |
name: PR name check | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: CondeNast/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
ignoreCommits: "true" |