-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from shoriwe/dev
Dev
- Loading branch information
Showing
6 changed files
with
76 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Release | |
|
||
on: | ||
push: | ||
branches: ["master"] | ||
branches: ["main"] | ||
|
||
jobs: | ||
coverage: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,11 +18,11 @@ jobs: | |
cache: "npm" | ||
- name: Git Identity | ||
run: | | ||
git checkout main | ||
git checkout dev | ||
git fetch --all --tags | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Antonio Donis" | ||
- name: Changelog | ||
run: 'npx standard-version --message "[ci skip] chore(release): %s"' | ||
- name: Push changes | ||
run: git push --follow-tags --force origin main | ||
run: git push --follow-tags --force origin dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# fullproxy | ||
|
||
[![Release](https://github.com/shoriwe/fullproxy/actions/workflows/release.yml/badge.svg)](https://github.com/shoriwe/fullproxy/actions/workflows/release.yml) | ||
[![Test](https://github.com/shoriwe/fullproxy/actions/workflows/test.yml/badge.svg)](https://github.com/shoriwe/fullproxy/actions/workflows/test.yml) | ||
[![Versioning](https://github.com/shoriwe/fullproxy/actions/workflows/version.yml/badge.svg)](https://github.com/shoriwe/fullproxy/actions/workflows/version.yml) | ||
[![codecov](https://codecov.io/gh/shoriwe/fullproxy/branch/master/graph/badge.svg?token=WQSZVR7YT7)](https://codecov.io/gh/shoriwe/fullproxy) | ||
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/shoriwe/fullproxy) | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/shoriwe/fullproxy/v4)](https://goreportcard.com/report/github.com/shoriwe/fullproxy/v4) | ||
|
||
<img src="logo/white_logo_color_background.jpg" alt="logo" style="zoom: 25%;" /> | ||
|
||
## Installing | ||
|
||
### Pre-compiled binaries | ||
|
||
You can find pre-compiled binaries in [release](releases/latest) | ||
|
||
### Go install | ||
|
||
Can compile from source with: | ||
|
||
```shell | ||
go install github.com/shoriwe/fullproxy/v4@latest | ||
``` | ||
|
||
### Cloning repository | ||
|
||
- Clone repository | ||
|
||
```shell | ||
git clone https://github.com/shoriwe/fullproxy | ||
``` | ||
|
||
- Build | ||
|
||
```shell | ||
cd fullproxy && go build . | ||
``` | ||
|
||
## Preview | ||
|
||
### Compose | ||
|
||
See [Compose](docs/Compose.md) for more information about **compose contracts**. | ||
|
||
```shell | ||
fullproxy compose ./fullproxy-compose.yaml | ||
``` | ||
|
||
## Documentation | ||
|
||
| File | Description | | ||
| -------------------------------------------------------- | ------------------------------------------------- | | ||
| [Circuits](docs/Circuits.md) | Documentation about how circuits work | | ||
| [CLI](docs/CLI.md) | Documentation of the CLI tool | | ||
| [Compose](docs/Compose.md) | Documentation about the **compose** specification | | ||
| [Continuous integration](docs/Continuous%20integration.md) | Documentation of the CI | | ||
|
||
## Coverage | ||
|
||
| [![codecov](https://codecov.io/gh/shoriwe/fullproxy/branch/master/graphs/sunburst.svg?token=WQSZVR7YT7)](https://github.com/shoriwe/fullproxy) | [![codecov](https://codecov.io/gh/shoriwe/fullproxy/branch/master/graphs/tree.svg?token=WQSZVR7YT7)](https://github.com/shoriwe/fullproxy) | | ||
| :----------------------------------------------------------: | :----------------------------------------------------------: | | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
"git-semver-tags": "^4.1.1", | ||
"standard-version": "^9.5.0" | ||
}, | ||
"version": "4.1.0" | ||
"version": "4.1.1" | ||
} |