Skip to content

Commit

Permalink
add tests test
Browse files Browse the repository at this point in the history
  • Loading branch information
kent-3 committed Aug 3, 2024
1 parent 1e676fc commit cac4617
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/Secret_gateway_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,29 @@ jobs:
target: ${{ matrix.target }}
- run: cargo build --target ${{ matrix.target }} --no-default-features --release

test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- uses: mozilla-actions/[email protected]
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo test --release --no-default-features
- run: cargo test --release
- run: cargo test --release --all-features

# secret_gateway_tests:
# runs-on: ubuntu-latest
# strategy:
Expand Down

0 comments on commit cac4617

Please sign in to comment.