Skip to content

Here's a clean implementation of the GitHub Actions workflow modifica… #2

Here's a clean implementation of the GitHub Actions workflow modifica…

Here's a clean implementation of the GitHub Actions workflow modifica… #2

Workflow file for this run

name: Dioxus Build
on:
push:
branches: [ "**" ] # Run on all branches
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install Dioxus CLI
run: cargo install dioxus-cli
- name: Build Dioxus Project
run: |
cd ui
dx build