Skip to content

fix(models): fix model build (#5653) #111

fix(models): fix model build (#5653)

fix(models): fix model build (#5653) #111

Workflow file for this run

---
name: V1 Executor Lint & Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
GOLANG_VERSION: 1.20.9
jobs:
executor-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: lint-executor
run: make -C executor lint
executor-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: test-executor
run: make -C executor test