Skip to content

Commit

Permalink
Merge pull request #3 from hhatto/refine
Browse files Browse the repository at this point in the history
refine
  • Loading branch information
hhatto committed Jul 1, 2023
2 parents 78939dc + 5a6dc8a commit 285de26
Show file tree
Hide file tree
Showing 3 changed files with 177 additions and 223 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust
name: build

on:
push:
Expand All @@ -15,8 +15,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -D warnings

0 comments on commit 285de26

Please sign in to comment.