Skip to content

Secured Signal API Implementation #81

Secured Signal API Implementation

Secured Signal API Implementation #81

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: Lint
uses: golangci/golangci-lint-action@v9
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...