feat(templates): add .jzero.yaml #50
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
name: jzero-ci | |
on: | |
push: | |
branches: | |
pull_request: | |
jobs: | |
golangci: | |
name: ci | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.22.3' | |
- name: Install Jzero and Grum | |
run: | | |
go install github.com/jzero-io/jzero@main | |
jzero check | |
go install github.com/jaronnie/grum@latest | |
- name: Test Usage and upload | |
run: | | |
GITHUB_TOKEN=${{ secrets.ACCESS_TOKEN }} grum clone https://github.com/jzero-io/examples | |
cd examples | |
rm -rf simplerpc | |
jzero new simplerpc --branch rpc | |
cd simplerpc | |
jzero gen | |
jzero gen swagger | |
jzero gen zrpcclient | |
go mod tidy && go run main.go version | |
cd .. | |
git add . | |
git commit -m "chore(simplerpc): update simplerpc" | |
git push -f |