Skip to content

[Chore]: Bump meshery/schemas to v1.1.0 #2730

[Chore]: Bump meshery/schemas to v1.1.0

[Chore]: Bump meshery/schemas to v1.1.0 #2730

Workflow file for this run

name: Lint and unit tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
golangci:
name: lint
needs: [tidy]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.25'
cache: true
cache-dependency-path: go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.11.4
skip-cache: true
- name: Run golangci-lint
run: make check
tidy:
name: tidy
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.25'
cache: true
cache-dependency-path: go.sum
- name: go mod tidy
run: make tidy
test:
name: test
needs: [tidy]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.25'
cache: true
cache-dependency-path: go.sum
- name: Run tests
run: make test