File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name :
2+ check
3+ on :
4+ pull_request :
5+ branches :
6+ main
7+ permissions :
8+ contents : read
9+ jobs :
10+ build :
11+ name : check
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v5
15+ - name : Setup rust
16+ uses : actions-rs/toolchain@v1
17+ with :
18+ toolchain : stable
19+ - name : Install system dependencies
20+ run :
21+ sudo apt-get update
22+ - name : Install dioxus-cli
23+ run : |
24+ curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
25+ cargo binstall dioxus-cli
26+ - name : Check api
27+ run : |
28+ cd api
29+ cargo check
30+ - name : Check web
31+ run :
32+ dx check --package web
33+ - name : Check desktop
34+ run :
35+ dx check --package desktop
36+ - name : Check mobile
37+ run :
38+ dx check --package desktop
You can’t perform that action at this time.
0 commit comments