Skip to content

fix(pipeline): run test on PR open #54

fix(pipeline): run test on PR open

fix(pipeline): run test on PR open #54

Workflow file for this run

name: Test
on:
push:
pull_request:
types: [opened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install dependencies
run: make plugin/lint
- name: Linting
run: make lint