Skip to content

Add CI step to dump github context #13

Add CI step to dump github context

Add CI step to dump github context #13

Workflow file for this run

name: Go
on:
push:
jobs:
setup-go:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: matthewhughes-uw/setup-go@96dc2922127bfc204e643cd3360a1342f9849326
with:
go-version-file: 'go.mod'
- name: go version
run: go version
- name: Run app
run: go run ./main.go