diff --git a/.github/workflows/crypto-tests.yml b/.github/workflows/crypto-tests.yml deleted file mode 100644 index 0238362f..00000000 --- a/.github/workflows/crypto-tests.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: crypto/ Tests - -on: - push: - branches: - - develop - paths: - - "common/**" - - "crypto/**" - - pull_request: - paths: - - "common/**" - - "crypto/**" - - workflow_dispatch: - -jobs: - test-crypto: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - - - name: Run Tests - run: | - GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features \ - -p flexible-transcript \ - -p ff-group-tests \ - -p dalek-ff-group \ - -p minimal-ed448 \ - -p ciphersuite \ - -p multiexp \ - -p schnorr-signatures \ - -p dleq \ - -p dkg \ - -p modular-frost \ - -p generalized-schnorr \ - -p ec-divisors diff --git a/.github/workflows/common-tests.yml b/.github/workflows/tests.yml similarity index 69% rename from .github/workflows/common-tests.yml rename to .github/workflows/tests.yml index 2c60cf54..d0620827 100644 --- a/.github/workflows/common-tests.yml +++ b/.github/workflows/tests.yml @@ -1,15 +1,11 @@ -name: common/ Tests +name: Tests on: push: branches: - develop - paths: - - "common/**" pull_request: - paths: - - "common/**" workflow_dispatch: @@ -21,6 +17,4 @@ jobs: - name: Run Tests run: | - GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features \ - -p std-shims \ - -p zalloc + GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features