Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Sep 8, 2023
1 parent 3d3b103 commit e953ce7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ jobs:
- run: rustup toolchain install stable --profile minimal --target ${{ matrix.target }}
- run: rustup component add rustfmt clippy
- run: cargo fetch
- run: cargo fmt -- --check --color always
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: make lint
- name: cargo test build
run: cargo build --tests --release
- name: cargo test
run: cargo test --release
- name: Make desktop build
run: cd ./examples/desktop && make desktop-build
run: cd ./examples/desktop && cargo build
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ watch:
cargo watch -- make run

lint:
cargo fmt --check
cargo fmt -- --check --color always
cargo clippy --all-targets --all-features -- -D warnings

build-wasm:
cargo build --release --target wasm32-unknown-unknown
Expand Down

0 comments on commit e953ce7

Please sign in to comment.