Skip to content

[Chore]: Bump meshery/schemas to v1.3.56 #3011

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

[Chore]: Bump meshery/schemas to v1.3.56 #3011

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@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26'
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@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
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@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
cache: true
cache-dependency-path: go.sum
- name: Run tests
run: make test