tangled
alpha
login
or
join now
teal.fm
/
teal
110
fork
atom
Your music, beautifully tracked. All yours. (coming soon)
teal.fm
teal-fm
atproto
110
fork
atom
overview
issues
pulls
pipelines
Fix CI commands to run from root
Natalie B.
7 months ago
d7e775cf
b1211042
+3
-3
1 changed file
expand all
collapse all
unified
split
.github
workflows
ci.yml
+3
-3
.github/workflows/ci.yml
···
122
122
123
123
- name: Check Rust formatting
124
124
run: |
125
125
-
cd services && cargo fmt --all -- --check
125
125
+
cargo fmt --all -- --check
126
126
cd ../apps/aqua && cargo fmt --all -- --check
127
127
128
128
- name: Run Clippy
129
129
run: |
130
130
-
cd services && cargo clippy --all-targets --all-features -- -D warnings
130
130
+
cargo clippy --all-targets --all-features -- -D warnings
131
131
cd ../apps/aqua && cargo clippy --all-targets --all-features -- -D warnings
132
132
133
133
- name: Run Rust tests
134
134
run: |
135
135
-
cd services && cargo test --all-features
135
135
+
cargo test --all-features
136
136
137
137
node-quality:
138
138
name: Node.js Quality Checks