Skip to content

Remove grpc-plugin storage type #213

Remove grpc-plugin storage type

Remove grpc-plugin storage type #213

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: ✨ Setup Hugo
env:
# should match one from netlify.toml
HUGO_VERSION: 0.123.6
run: |
mkdir ~/hugo
cd ~/hugo
curl -L "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz" --output hugo.tar.gz
tar -xvzf hugo.tar.gz
sudo mv hugo /usr/local/bin
hugo version
- name: Spellcheck
run: |
make spellcheck
- name: Build
run: |
make build
- name: Ensure PR is not on main branch
uses: jaegertracing/jaeger/.github/actions/block-pr-not-on-main@main