Skip to content

Enhance JsValue and GoValue functions to support io.Writer, io.Reader… #235

Enhance JsValue and GoValue functions to support io.Writer, io.Reader…

Enhance JsValue and GoValue functions to support io.Writer, io.Reader… #235

Workflow file for this run

name: Receive PR
# read-only repo token
# no access to secrets
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Save PR number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
echo ${{ github.event.pull_request.head.sha }} > ./pr/SHA
- uses: actions/upload-artifact@v3
with:
name: pr
path: pr/