Skip to content

Commit 3d7c46a

Browse files
Misei.Misei.
authored andcommitted
Initialize ATEM-UI workspace with gpui core
1 parent af7001c commit 3d7c46a

File tree

11 files changed

+9534
-1
lines changed

11 files changed

+9534
-1
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Install Rust (stable + components)
14+
uses: dtolnay/rust-toolchain@stable
15+
with:
16+
components: rustfmt, clippy
17+
18+
- name: Cargo fmt (check)
19+
run: cargo fmt --all -- --check
20+
21+
- name: Cargo clippy (deny warnings)
22+
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
23+
24+
- name: Cargo check
25+
run: cargo check --workspace
26+
27+
- name: Cargo test (compile only)
28+
run: cargo test --workspace --no-run
29+

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/target/
2+
/.idea/
3+
/.vscode/
4+
*.log
5+
*.swp
6+
*.swo
7+

0 commit comments

Comments
 (0)