Skip to content

chore(master): release 0.1.14 #505

chore(master): release 0.1.14

chore(master): release 0.1.14 #505

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
env:
# renovate: datasource=golang-version depName=golang
GO_VERSION: '1.22.2'
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5
with:
go-version: '${{ env.GO_VERSION }}'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover ./...
- name: Test with Github API
run: |
T=$(mktemp)
trap "rm -f $T" 1 2 3 15
urlparam=""
if [ -n "${GITHUB_URL}" ]; then
urlparam="-url ${GITHUB_URL}"
fi
eval "$(./go-github-apps -export -app-id "${GH_APP_ID}" -inst-id "${GH_APP_INST_ID}")"
curl --fail -H "Authorization: token ${GITHUB_TOKEN}" https://api.github.com/
env:
GH_APP_INST_ID: ${{ secrets.installation_id }}
GH_APP_ID: ${{ secrets.app_id }}
GITHUB_PRIV_KEY: ${{ secrets.private_key }}