-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (47 loc) · 1.48 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: CI
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nightly rustfmt
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
components: rustfmt
- name: Install stable clippy
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy
override: true
- uses: Swatinem/rust-cache@v2
with:
cache-all-crates: "true"
cache-on-failure: "true"
- name: Install npm
uses: actions/setup-node@v4
- name: Install npm deps
working-directory: app
run: npm ci;
# dotenvy requires this
- run: cp .env.example .env
- name: Format check
run: cargo +nightly fmt --all -- --check
- name: Lint check
run: cargo +stable clippy --all-features -- -D warnings
- name: Test
run: cargo test
- name: Install Dioxus
# run: cargo binstall [email protected] -y --force
run: cargo install --git https://github.com/DioxusLabs/dioxus.git --rev 87c2f64f134756578f6cf9e12fd085b9bb03c5c7 dioxus-cli --locked
- name: Build app
working-directory: app
run: dx build --platform web --features web