Skip to content

partial command support #1372

partial command support

partial command support #1372

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
with:
fetch-depth: 0
submodules: recursive
- name: Install npm modules
run: |
cd public && npm ci && npm run jshint && npm run bundle
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19.x
- name: Test
run: |
go test ./... -coverprofile=profile.cov
- uses: shogo82148/[email protected]
with:
path-to-profile: profile.cov