Skip to content

Commit

Permalink
- fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dssei committed Oct 14, 2024
1 parent 83c64dc commit acb5f41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ jobs:
- name: Determine packages to test (excluding elgamal)
id: packages
run: |
PACKAGES=$(go list ./... | grep -v '/pkg/encryption/elgamal')
PACKAGES=$(go list ./... | grep -v '/pkg/encryption/elgamal$')
echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV
- name: Run general unit tests
run: |
go test -mod=readonly -race -v -timeout 5m $PACKAGES
go test -mod=readonly -race -v -timeout 5m ${PACKAGES}
# Define a matrix for ElGamal package test subsets
elgamal-tests:
Expand Down

0 comments on commit acb5f41

Please sign in to comment.