Skip to content

quick feedback

quick feedback #2

Workflow file for this run

# See https://docs.github.com/en/actions/reference/
on: [push]
name: ci
env:
go-version: 1.25.x
task-version: v3.46.3
jobs:
all:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ env.go-version }}
# - name: Install Task
# run: go install github.com/go-task/task/v3/cmd/task@${{ env.task-version }}
- name: Checkout code
uses: actions/checkout@v6
with:
# By default, actions/checkout will persist the GITHUB_TOKEN, so that further
# steps in the job can perform authenticated git commands (that is: WRITE to
# the repo). Following the Principle of least privilege, we disable this as long
# as we don't need it.
persist-credentials: false
# - run: task ci:setup
# - run: task lint
# - run: task build
- run: go build ./...
# - run: task test:all
- run: go test ./... -v
env:
GOKIT_TEST_OAUTH_TOKEN: ${{ secrets.GOKIT_TEST_OAUTH_TOKEN }}
GOKIT_TEST_GH_APP_PRIVATE_KEY: |
${{ secrets.GOKIT_TEST_GH_APP_PRIVATE_KEY }}