Skip to content

chore(deps): bump golang.org/x/net from 0.12.0 to 0.23.0 #59

chore(deps): bump golang.org/x/net from 0.12.0 to 0.23.0

chore(deps): bump golang.org/x/net from 0.12.0 to 0.23.0 #59

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
code-review:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Run code review
run: |
go mod tidy
go build
go test
# Run code review tool here
- name: Merge to main
if: success()
uses: devmasx/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_branch: ${{ github.head_ref }}
target_branch: main