Skip to content

Commit

Permalink
update build and make file
Browse files Browse the repository at this point in the history
  • Loading branch information
priteshbandi committed Jan 20, 2024
1 parent 703fdcc commit 996fa09
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ on:

jobs:
build:
uses: notaryproject/notation-core-go/.github/workflows/reusable-build.yml@main
uses: priteshbandi/notation-core-go/.github/workflows/reusable-build.yml@main
with:
run-e2e-tests: true
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ all: test
test: check-line-endings ## run unit tests
go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...

.PHONY: e2e
e2e:
cd ./test/e2e && ./run.sh;

.PHONY: clean
clean:
git status --ignored --short | grep '^!! ' | sed 's/!! //' | xargs rm -rf
Expand Down

0 comments on commit 996fa09

Please sign in to comment.