Skip to content

Commit 98956fa

Browse files
authored
feat: enabled cross-repository access by resolving relative paths added search & utils tests (#17)
1 parent c6e48f6 commit 98956fa

File tree

8 files changed

+638
-28
lines changed

8 files changed

+638
-28
lines changed

.github/workflows/test.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
test:
14+
name: Run Tests
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Install Rust
20+
uses: dtolnay/rust-toolchain@stable
21+
22+
- name: Cache dependencies
23+
uses: actions/cache@v3
24+
with:
25+
path: |
26+
~/.cargo/registry
27+
~/.cargo/git
28+
target
29+
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
30+
31+
- name: Run tests
32+
run: cargo test --all-features --verbose

0 commit comments

Comments
 (0)