Skip to content

Merge pull request #25 from go-park-mail-ru/TP-87a_filtration #21

Merge pull request #25 from go-park-mail-ru/TP-87a_filtration

Merge pull request #25 from go-park-mail-ru/TP-87a_filtration #21

Workflow file for this run

name: Start pinspire CI
on:
workflow_dispatch: {}
push: {}
pull_request:
types: [opened, edited, reopened]
branches: [main, dev4]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v4
- name: Test application
continue-on-error: true
run: go test ./...
lint:
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v4
- name: Lint application
run: make lint
build:
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v4
- name: Build application
run: make build_all