Skip to content

Update STABLE-RELEASE to v1.2.2 #134

Update STABLE-RELEASE to v1.2.2

Update STABLE-RELEASE to v1.2.2 #134

Workflow file for this run

name: ci-go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
go-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version-file: './relay-server/go.mod'
- name: Check gofmt
run: gofmt -s -d $(find . -type f -name '*.go' -print)
working-directory: relay-server
go-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Run Revive Action by pulling pre-built image
uses: morphy2k/revive-action@v2
with:
path: "./relay-server/..."
go-sec:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version-file: './relay-server/go.mod'
- name: Run Gosec Security Scanner
run: |
make gosec
working-directory: relay-server