Skip to content

fix(swo_notification): typo in auth_header_name (#94) #23

fix(swo_notification): typo in auth_header_name (#94)

fix(swo_notification): typo in auth_header_name (#94) #23

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
checks: write
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test
run: go test