Skip to content

feat: added semantic release support #36

feat: added semantic release support

feat: added semantic release support #36

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20
- name: Build
run: go build -o bin/aos ./cmd/aos
- name: Test
run: |
go test -v -race ./... -coverprofile cover.out
- name: Coverage
run: go tool cover -func cover.out
generate:
needs: ci
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Generate
run: |
go generate ./...
- uses: EndBug/add-and-commit@v9