Skip to content

add read access to the global authorizedKeys #188

add read access to the global authorizedKeys

add read access to the global authorizedKeys #188

Workflow file for this run

name: test
on: ["push"]
permissions:
contents: read
jobs:
golangci:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: "1.23.x"
cache: false
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./...