Skip to content

fix: sort executions by scheduledat time #10038

fix: sort executions by scheduledat time

fix: sort executions by scheduledat time #10038

Workflow file for this run

name: "Linting"
on:
pull_request:
types:
- opened
- edited
- synchronize
permissions:
# allow read access to the content for analysis.
contents: read
# allow read access to pull requests. Use with `only-new-issues` option.
pull-requests: read
jobs:
lint-openapi:
name: Lint OpenAPI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: OpenAPI Lint Checks
uses: swaggerexpert/swagger-editor-validate@v1
with:
definition-file: api/v1/testkube.yaml
lint-go:
name: Lint Go
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Lint using golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.3.0
args: --timeout=10m
only-new-issues: true
verify: true