Skip to content

Mark deprecated methods and print comments #199

Mark deprecated methods and print comments

Mark deprecated methods and print comments #199

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
- name: Install webrpc-gen (development)
run: git clone --single-branch https://github.com/webrpc/webrpc.git --branch master && cd webrpc && make install
- name: Regenerate examples
run: cd _examples && make generate
- name: Git diff of regenerated files
run: cd _examples && make diff
# webrpc-tests:
# strategy:
# matrix:
# webrpc-version: [v0.18.0]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 18
# - name: Set up webrpc binary cache folder
# uses: actions/cache@v3
# with:
# key: webrpc-binaries
# path: tests/bin
# - name: Install dependencies
# run: cd tests && npm install
# - name: Download webrpc binaries
# run: cd tests && ./download.sh ${{ matrix.webrpc-version }} bin/${{ matrix.webrpc-version }}
# - name: Export path of webrpc binaries
# run: cd tests && echo "$PWD/bin/${{ matrix.webrpc-version }}" >> $GITHUB_PATH
# - name: Run interoperability tests
# run: cd tests && ./test.sh
# - name: Run typescript check
# run: cd tests && npm run ts-check