Skip to content

Commit

Permalink
run ci on pull_request, add clippy to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cdump committed Sep 5, 2024
1 parent 382c215 commit 30aa25f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: build

on: push
on:
push:
pull_request:

jobs:
rust-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: cargo test
- name: Test and Clippy
run: |
cargo test
cargo clippy --all-features -- -D warnings
javascript:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 30aa25f

Please sign in to comment.