Skip to content

Commit

Permalink
fix(fmt): Fixed actions
Browse files Browse the repository at this point in the history
  • Loading branch information
breadrock1 committed Jul 5, 2024
1 parent 2ae4192 commit fa141f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
cargo build --manifest-path adblock-rs/Cargo.toml
mkdir -p ./target/lib
cp -r ./adblock-rs/target/release/libadblock_coffee.* ./target/lib/
cp -r ./adblock-rs/target/debug/libadblock_coffee.* ./target/lib/
- uses: actions/setup-java@v4
with:
java-version: '11'
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build rust library
run: cargo test --all
run: cargo test --all --manifest-path adblock-rs/Cargo.toml

mvn-test:
name: mvn test
Expand All @@ -53,7 +53,7 @@ jobs:
run: |
cargo build --manifest-path adblock-rs/Cargo.toml
mkdir -p ./target/lib
cp -r ./adblock-rs/target/release/libadblock_coffee.* ./target/lib/
cp -r ./adblock-rs/target/debug/libadblock_coffee.* ./target/lib/
- uses: actions/setup-java@v4
with:
java-version: '11'
Expand Down

0 comments on commit fa141f8

Please sign in to comment.