Skip to content

Merge pull request #5 from FirowMD/revert-icons #5

Merge pull request #5 from FirowMD/revert-icons

Merge pull request #5 from FirowMD/revert-icons #5

Workflow file for this run

name: Continuous Integration bytesto4t
on:
push:
branches:
- master
pull_request: {}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
toolchain: [dev, nightly, 1.72.0]
bun-version: [latest, canary]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Build Rust project
run: cargo build
# https://bun.sh/guides/runtime/cicd
- name: Install Tauri CLI
run: bun install -g @tauri-apps/cli
with:

Check failure on line 34 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Continuous Integration bytesto4t

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 34, Col: 9): Unexpected value 'with' .github/workflows/ci.yml (Line: 39, Col: 9): Unexpected value 'with'
bun-version: ${{ matrix.bun-version }}
- name: Install dependencies
run: bun install
with:
bun-version: ${{ matrix.bun-version }}
- name: Build Svelte app
run: bun run build
with:
bun-version: ${{ matrix.bun-version }}
- name: Build Tauri app
run: bun run tauri build
with:
bun-version: ${{ matrix.bun-version }}