Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Unit tests + lints

on:
push:
pull_request:
types: [opened]

name: Unit tests + lints

jobs:
test:
name: Test Suite
Expand All @@ -26,6 +26,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --locked

lints:
name: Lints
Expand All @@ -52,4 +53,4 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: --tests -- -D warnings
args: --locked --tests -- -D warnings
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ packages/injective-test-tube/libinjectivetesttube/injective-test-tube

.idea

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

Expand Down
Loading
Loading