Skip to content

Commit

Permalink
chore: fix docs and e2e (#17)
Browse files Browse the repository at this point in the history
- Add entry points for examples in `README.md`
- Fix E2E test arguments
- Add `.gitignore`
- Replace `go.work` with `go.mod`

---------

Signed-off-by: Shiwei Zhang <shizh@microsoft.com>
  • Loading branch information
shizhMSFT committed Jan 31, 2024
1 parent 29add9b commit a1ec01f
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 34 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright The Notary Project Authors.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# VS Code
.vscode

# Custom
bin/
vendor/
test/e2e/bin/
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ clean:
.PHONY: check-line-endings
check-line-endings: ## check line endings
! find . -name "*.go" -type f -exec file "{}" ";" | grep CRLF
! find scripts -name "*.sh" -type f -exec file "{}" ";" | grep CRLF

.PHONY: fix-line-endings
fix-line-endings: ## fix line endings
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,19 @@ Please visit [README](https://github.com/notaryproject/.github/blob/main/README.
## Table of Contents

- [Documentation](#documentation)
- [Example Plugins](#example-plugins)
- [Code of Conduct](#code-of-conduct)
- [License](#license)

## Documentation

Library documentation is available at [Go Reference](https://pkg.go.dev/github.com/notaryproject/notation-plugin-framework-go).

## Example Plugins

- [Signature generator](example/signaturegenerator/)
- [Envelope generator](example/envelopegenerator/)

## Code of Conduct

This project has adopted the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). See [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for further details.
Expand Down
16 changes: 0 additions & 16 deletions example/envelopegenerator/go.work

This file was deleted.

7 changes: 7 additions & 0 deletions example/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module github.com/notaryproject/notation-plugin-framework-go/example

go 1.20

require github.com/notaryproject/notation-plugin-framework-go v0.0.0-00010101000000-000000000000

replace github.com/notaryproject/notation-plugin-framework-go => ../
16 changes: 0 additions & 16 deletions example/signaturegenerator/go.work

This file was deleted.

2 changes: 1 addition & 1 deletion test/e2e/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ done
# run e2e tests
echo "running e2e tests..."
echo "=============================="
go test -race -v ./... -args -env_gen_plugin="./bin/${plugin_directories[0]}/$PLUGIN_NAME" - sig_gen_plugin="./bin/${plugin_directories[1]}/$PLUGIN_NAME"
go test -race -v ./... -args -env_gen_plugin="./bin/${plugin_directories[0]}/$PLUGIN_NAME" -sig_gen_plugin="./bin/${plugin_directories[1]}/$PLUGIN_NAME"

0 comments on commit a1ec01f

Please sign in to comment.